diff options
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r-- | src/WinClient.cc | 6 |
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() { | |||
163 | bool WinClient::acceptsFocus() const { | 163 | bool 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 | ||
170 | bool WinClient::sendFocus() { | 170 | bool WinClient::sendFocus() { |