aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2007-12-30 15:32:53 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2007-12-30 15:32:53 (GMT)
commit04cd2fd14c6f45f61457e034906f630ce46a76cc (patch)
tree67e2f2f7977c3e8525c2ae7eb30f593f7f440b82 /src/Window.cc
parent4cc810b0d39917d37fa08034ac7dd509292c9ce3 (diff)
downloadfluxbox-04cd2fd14c6f45f61457e034906f630ce46a76cc.zip
fluxbox-04cd2fd14c6f45f61457e034906f630ce46a76cc.tar.bz2
removed some unneeded headers
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 909d8db..a6ea166 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -40,12 +40,12 @@
40#include "WindowCmd.hh" 40#include "WindowCmd.hh"
41#include "Remember.hh" 41#include "Remember.hh"
42#include "MenuCreator.hh" 42#include "MenuCreator.hh"
43#include "StringUtil.hh"
44#include "FocusControl.hh" 43#include "FocusControl.hh"
45#include "Layer.hh" 44#include "Layer.hh"
46#include "IconButton.hh" 45#include "IconButton.hh"
47#include "ScreenPlacement.hh" 46#include "ScreenPlacement.hh"
48 47
48#include "FbTk/StringUtil.hh"
49#include "FbTk/Compose.hh" 49#include "FbTk/Compose.hh"
50#include "FbTk/EventManager.hh" 50#include "FbTk/EventManager.hh"
51#include "FbTk/KeyUtil.hh" 51#include "FbTk/KeyUtil.hh"
@@ -3706,11 +3706,11 @@ const string &FluxboxWindow::title() const {
3706} 3706}
3707 3707
3708const std::string &FluxboxWindow::getWMClassName() const { 3708const std::string &FluxboxWindow::getWMClassName() const {
3709 return (m_client ? m_client->getWMClassName() : m_instance_name); 3709 return (m_client ? m_client->getWMClassName() : getWMClassName());
3710} 3710}
3711 3711
3712const std::string &FluxboxWindow::getWMClassClass() const { 3712const std::string &FluxboxWindow::getWMClassClass() const {
3713 return (m_client ? m_client->getWMClassClass() : m_class_name); 3713 return (m_client ? m_client->getWMClassClass() : getWMClassClass());
3714} 3714}
3715 3715
3716std::string FluxboxWindow::getWMRole() const { 3716std::string FluxboxWindow::getWMRole() const {