summaryrefslogtreecommitdiff
path: root/plugins
diff options
authorMC Return <mc.return@gmx.net>2012-09-06 18:14:50 +0000
committerTarmac <>2012-09-06 18:14:50 +0000
commite048533ccc9c0d64936f9e4243b3fa51b8395c69 (patch)
tree01419ac1d20e14715a6e95843887e834c8420f8d /plugins
parenta21c21cb310754676e5e2015663ea638234bc110 (diff)
parentcdd0da02c55d1882053a8066fdc5b9f2b573b057 (diff)
Removed the variables 'oldPrev' and 'oldNext' which got assigned the value NULL, but then were never used.. Approved by Brandon Schaefer.
(bzr r2666)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/unity-mt-grab-handles/src/unity-mt-grab-handles.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/unity-mt-grab-handles/src/unity-mt-grab-handles.cpp b/plugins/unity-mt-grab-handles/src/unity-mt-grab-handles.cpp
index ad840204c..8807ebc14 100644
--- a/plugins/unity-mt-grab-handles/src/unity-mt-grab-handles.cpp
+++ b/plugins/unity-mt-grab-handles/src/unity-mt-grab-handles.cpp
@@ -223,9 +223,9 @@ UnityMTGrabHandlesScreen::raiseHandle (const boost::shared_ptr <const unity::MT:
void
UnityMTGrabHandlesScreen::handleEvent(XEvent* event)
{
- CompWindow* w, *oldPrev, *oldNext;
+ CompWindow* w;
- w = oldPrev = oldNext = NULL;
+ w = NULL;
switch (event->type)
{