aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-11-12 21:59:43 (GMT)
committermarkt <markt>2007-11-12 21:59:43 (GMT)
commit5d7043320da1378e7dd3b10f7e425f3b47455b28 (patch)
tree305db18a58ab6768b78ab230074da576d09e372d /src/FbCommands.hh
parent807a1b557552e43dbdc169c1e7a3065a3f12aac7 (diff)
downloadfluxbox-5d7043320da1378e7dd3b10f7e425f3b47455b28.zip
fluxbox-5d7043320da1378e7dd3b10f7e425f3b47455b28.tar.bz2
allow arbitrary window patterns in iconbar
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r--src/FbCommands.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh
index c563899..c130050 100644
--- a/src/FbCommands.hh
+++ b/src/FbCommands.hh
@@ -31,6 +31,7 @@
31#include "FbTk/RefCount.hh" 31#include "FbTk/RefCount.hh"
32#include "ClientMenu.hh" 32#include "ClientMenu.hh"
33#include "ClientPattern.hh" 33#include "ClientPattern.hh"
34#include "FocusableList.hh"
34 35
35#include <list> 36#include <list>
36#include <string> 37#include <string>
@@ -118,7 +119,7 @@ public:
118class ShowClientMenuCmd: public FbTk::Command { 119class ShowClientMenuCmd: public FbTk::Command {
119public: 120public:
120 ShowClientMenuCmd(int option, std::string &pat): 121 ShowClientMenuCmd(int option, std::string &pat):
121 m_option(option), m_pat(pat.c_str()) { } 122 m_option(option|FocusableList::LIST_GROUPS), m_pat(pat.c_str()) { }
122 void execute(); 123 void execute();
123private: 124private:
124 const int m_option; 125 const int m_option;