aboutsummaryrefslogtreecommitdiff
path: root/src/WinClient.cc
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-08-27 22:29:33 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-08-27 22:29:33 (GMT)
commit82047e6a391a12be9583168f28ac72c1154108d6 (patch)
tree68cc4865da7bdf95052907c6d8ce9cf0fb19c90b /src/WinClient.cc
parenta2ec0c9bdd9ebcc713426a79209b9ca90b4db301 (diff)
downloadfluxbox-82047e6a391a12be9583168f28ac72c1154108d6.zip
fluxbox-82047e6a391a12be9583168f28ac72c1154108d6.tar.bz2
move some things from FluxboxWindow to WindowState
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r--src/WinClient.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc
index aa8c6ed..3a22e4a 100644
--- a/src/WinClient.cc
+++ b/src/WinClient.cc
@@ -77,7 +77,7 @@ WinClient::WinClient(Window win, BScreen &screen, FluxboxWindow *fbwin):
77 send_close_message(false), 77 send_close_message(false),
78 m_title_override(false), 78 m_title_override(false),
79 m_icon_override(false), 79 m_icon_override(false),
80 m_window_type(Focusable::TYPE_NORMAL), 80 m_window_type(WindowState::TYPE_NORMAL),
81 m_mwm_hint(0), 81 m_mwm_hint(0),
82 m_strut(0) { 82 m_strut(0) {
83 83
@@ -163,8 +163,8 @@ WinClient::~WinClient() {
163bool WinClient::acceptsFocus() const { 163bool WinClient::acceptsFocus() const {
164 return ((accepts_input || send_focus_message) && 164 return ((accepts_input || send_focus_message) &&
165 // focusing fbpanel messes up quite a few things 165 // focusing fbpanel messes up quite a few things
166 m_window_type != Focusable::TYPE_DOCK && 166 m_window_type != WindowState::TYPE_DOCK &&
167 m_window_type != Focusable::TYPE_SPLASH); 167 m_window_type != WindowState::TYPE_SPLASH);
168} 168}
169 169
170bool WinClient::sendFocus() { 170bool WinClient::sendFocus() {