Remove variables that aren't being used right now
authorThiago Macieira <thiago.macieira@intel.com>
Thu, 5 Sep 2013 00:34:56 +0000 (17:34 -0700)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Sat, 7 Sep 2013 00:15:23 +0000 (02:15 +0200)
Found by ICC.

 src/quick/items/qquicktextcontrol.cpp(78): error #2415: variable "fullWidthSelection" of static storage duration was declared but never referenced
 src/quick/items/qquicktextinput.cpp(2696): error #2415: variable "textCursorWidth" of static storage duration was declared but never referenced
 src/quick/items/qquicktextinput.cpp(2697): error #2415: variable "fullWidthSelection" of static storage duration was declared but never referenced
 src/quick/scenegraph/qsgthreadedrenderloop.cpp(164): error #2415: variable "WM_LockAndSync" of static storage duration was declared but never referenced
 src/quick/scenegraph/qsgthreadedrenderloop.cpp(181): error #2415: variable "WM_UpdateLater" of static storage duration was declared but never referenced

Change-Id: I60b5cce79d7be5f909b690f97ffa93ea00d3c044
Reviewed-by: Alan Alpert <aalpert@blackberry.com>
src/quick/items/qquicktextcontrol.cpp
src/quick/items/qquicktextinput.cpp
src/quick/scenegraph/qsgthreadedrenderloop.cpp

index fce5e02..0a9677b 100644 (file)
@@ -75,7 +75,6 @@
 
 // ### these should come from QStyleHints
 const int textCursorWidth = 1;
-const bool fullWidthSelection = true;
 
 QT_BEGIN_NAMESPACE
 
index 2bd3a3d..e91ab77 100644 (file)
@@ -2692,10 +2692,6 @@ void QQuickTextInput::q_updateAlignment()
     }
 }
 
-// ### these should come from QStyleHints
-const int textCursorWidth = 1;
-const bool fullWidthSelection = true;
-
 /*!
     \internal
 
index d91c6f5..ba7bdbb 100644 (file)
@@ -161,7 +161,7 @@ const QEvent::Type WM_Expose            = QEvent::Type(QEvent::User + 1);
 const QEvent::Type WM_Obscure           = QEvent::Type(QEvent::User + 2);
 
 // Passed from the RL to itself to initiate a polishAndSync() call.
-const QEvent::Type WM_LockAndSync       = QEvent::Type(QEvent::User + 3);
+//const QEvent::Type WM_LockAndSync       = QEvent::Type(QEvent::User + 3); // not used for now
 
 // Passed from the RL to RT when GUI has been locked, waiting for sync
 // (updatePaintNode())
@@ -178,7 +178,7 @@ const QEvent::Type WM_TryRelease        = QEvent::Type(QEvent::User + 7);
 // Passed by the RL to the RL when maybeUpdate is called on the RT to
 // just replay the maybeUpdate later. This typically happens when
 // updatePaintNode() results in a call to QQuickItem::update().
-const QEvent::Type WM_UpdateLater       = QEvent::Type(QEvent::User + 8);
+//const QEvent::Type WM_UpdateLater       = QEvent::Type(QEvent::User + 8); // not used for now
 
 // Passed by the RL to the RT when a QQuickWindow::grabWindow() is
 // called.