diff options
author | rathnor <rathnor> | 2003-06-08 13:47:30 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-06-08 13:47:30 (GMT) |
commit | 93b2f8921c70e2cf5f2f2c3cf79943de54b6709b (patch) | |
tree | 9291b92cf9feb4f7647cdc8a88fd9af44c050450 /src/FbCommands.hh | |
parent | efe8bf4acd913a48ba08c4fa390297da27d17590 (diff) | |
download | fluxbox_pavel-93b2f8921c70e2cf5f2f2c3cf79943de54b6709b.zip fluxbox_pavel-93b2f8921c70e2cf5f2f2c3cf79943de54b6709b.tar.bz2 |
fix restart in menu to accept and use an argument
Diffstat (limited to 'src/FbCommands.hh')
-rw-r--r-- | src/FbCommands.hh | 6 |
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 |
52 | class RestartFluxboxCmd: public FbTk::Command { | 52 | class RestartFluxboxCmd: public FbTk::Command { |
53 | public: | 53 | public: |
54 | RestartFluxboxCmd(const std::string &cmd); | ||
54 | void execute(); | 55 | void execute(); |
56 | private: | ||
57 | std::string m_cmd; | ||
58 | const int m_screen_num; | ||
55 | }; | 59 | }; |
56 | 60 | ||
57 | /// reconfigures fluxbox | 61 | /// reconfigures fluxbox |