aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-03 17:43:44 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-03 17:43:44 (GMT)
commitbd519dd95200aa432fb3b431a4244ffb25c5de93 (patch)
tree3786141d1d990286446639850d46f9cb180408ee /src/Window.cc
parent11974fa40a69a2fb25598330afddbac4901592fc (diff)
downloadfluxbox-bd519dd95200aa432fb3b431a4244ffb25c5de93.zip
fluxbox-bd519dd95200aa432fb3b431a4244ffb25c5de93.tar.bz2
Remove various unused variables
Clang and Gcc-4.9 complaint about some unused variables here and there. And who are we to not make a compiler happy :)
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 2b997a7..cb0689e 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -332,12 +332,11 @@ FluxboxWindow::~FluxboxWindow() {
332 unregisterWindow(frame().window().window()); 332 unregisterWindow(frame().window().window());
333 } 333 }
334 334
335 335 fbdbg << "starting ~FluxboxWindow(" << this << ","
336 const char* title = m_client ? m_client->title().logical().c_str() : "" ; 336 << (m_client ? m_client->title().logical().c_str() : "") << ")" << endl
337 fbdbg<<"starting ~FluxboxWindow("<<this<<","<<title<<")"<<endl; 337 << "num clients = " << numClients() << endl
338 fbdbg<<"num clients = "<<numClients()<<endl; 338 << "curr client = "<< m_client << endl
339 fbdbg<<"curr client = "<<m_client<<endl; 339 << "m_labelbuttons.size = " << m_labelbuttons.size() << endl;
340 fbdbg<<"m_labelbuttons.size = "<<m_labelbuttons.size()<<endl;
341 340
342 if (moving) 341 if (moving)
343 stopMoving(true); 342 stopMoving(true);