aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-06-08 13:47:30 (GMT)
committerrathnor <rathnor>2003-06-08 13:47:30 (GMT)
commit93b2f8921c70e2cf5f2f2c3cf79943de54b6709b (patch)
tree9291b92cf9feb4f7647cdc8a88fd9af44c050450 /src/FbCommands.hh
parentefe8bf4acd913a48ba08c4fa390297da27d17590 (diff)
downloadfluxbox-93b2f8921c70e2cf5f2f2c3cf79943de54b6709b.zip
fluxbox-93b2f8921c70e2cf5f2f2c3cf79943de54b6709b.tar.bz2
fix restart in menu to accept and use an argument
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r--src/FbCommands.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/FbCommands.hh b/src/FbCommands.hh
index 1056b6f..4f87bf1 100644
--- a/src/FbCommands.hh
+++ b/src/FbCommands.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: FbCommands.hh,v 1.4 2003/04/28 00:34:06 fluxgen Exp $ 22// $Id: FbCommands.hh,v 1.5 2003/06/08 13:47:30 rathnor Exp $
23 23
24// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox 24// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox
25 25
@@ -51,7 +51,11 @@ public:
51/// restarts fluxbox 51/// restarts fluxbox
52class RestartFluxboxCmd: public FbTk::Command { 52class RestartFluxboxCmd: public FbTk::Command {
53public: 53public:
54 RestartFluxboxCmd(const std::string &cmd);
54 void execute(); 55 void execute();
56private:
57 std::string m_cmd;
58 const int m_screen_num;
55}; 59};
56 60
57/// reconfigures fluxbox 61/// reconfigures fluxbox