diff options
author | fluxgen <fluxgen> | 2005-05-02 12:10:01 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2005-05-02 12:10:01 (GMT) |
commit | dce0e2e40c9fed226139c3def26e423b75c6bb9c (patch) | |
tree | 55784f6a6c526ebf06fb0a116b74efbf0b9ca66a /src/fluxbox.hh | |
parent | 6b943ec69ada6ba8c7b0a8305f048df8ef07f961 (diff) | |
download | fluxbox_pavel-dce0e2e40c9fed226139c3def26e423b75c6bb9c.zip fluxbox_pavel-dce0e2e40c9fed226139c3def26e423b75c6bb9c.tar.bz2 |
using Select2nd
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r-- | src/fluxbox.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index a995bd5..f96e7eb 100644 --- a/src/fluxbox.hh +++ b/src/fluxbox.hh | |||
@@ -273,8 +273,10 @@ private: | |||
273 | FbTk::Resource<time_t> m_rc_auto_raise_delay; | 273 | FbTk::Resource<time_t> m_rc_auto_raise_delay; |
274 | FbTk::Resource<bool> m_rc_use_mod1; /// temporary!, to disable mod1 for resize/move | 274 | FbTk::Resource<bool> m_rc_use_mod1; /// temporary!, to disable mod1 for resize/move |
275 | 275 | ||
276 | std::map<Window, WinClient *> m_window_search; | 276 | typedef std::map<Window, WinClient *> WinClientMap; |
277 | std::map<Window, FluxboxWindow *> m_window_search_group; | 277 | WinClientMap m_window_search; |
278 | typedef std::map<Window, FluxboxWindow *> WindowMap; | ||
279 | WindowMap m_window_search_group; | ||
278 | // A window is the group leader, which can map to several | 280 | // A window is the group leader, which can map to several |
279 | // WinClients in the group, it is *not* fluxbox's concept of groups | 281 | // WinClients in the group, it is *not* fluxbox's concept of groups |
280 | // See ICCCM section 4.1.11 | 282 | // See ICCCM section 4.1.11 |