diff options
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r-- | src/CurrentWindowCmd.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh index fd6ac40..3e56625 100644 --- a/src/CurrentWindowCmd.hh +++ b/src/CurrentWindowCmd.hh | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: CurrentWindowCmd.hh,v 1.1 2003/06/30 14:35:11 fluxgen Exp $ | 23 | // $Id: CurrentWindowCmd.hh,v 1.2 2003/07/28 15:06:33 rathnor Exp $ |
24 | 24 | ||
25 | #ifndef CURRENTWINDOWCMD_HH | 25 | #ifndef CURRENTWINDOWCMD_HH |
26 | #define CURRENTWINDOWCMD_HH | 26 | #define CURRENTWINDOWCMD_HH |
@@ -28,6 +28,8 @@ | |||
28 | #include "Command.hh" | 28 | #include "Command.hh" |
29 | 29 | ||
30 | class FluxboxWindow; | 30 | class FluxboxWindow; |
31 | class WinClient; | ||
32 | |||
31 | /// command that calls FluxboxWindow::<the function> on execute() | 33 | /// command that calls FluxboxWindow::<the function> on execute() |
32 | /// similar to FbTk::SimpleCommand<T> | 34 | /// similar to FbTk::SimpleCommand<T> |
33 | class CurrentWindowCmd: public FbTk::Command { | 35 | class CurrentWindowCmd: public FbTk::Command { |
@@ -47,7 +49,8 @@ public: | |||
47 | 49 | ||
48 | protected: | 50 | protected: |
49 | 51 | ||
50 | FluxboxWindow &window(); | 52 | WinClient &winclient(); |
53 | FluxboxWindow &fbwindow(); | ||
51 | virtual void real_execute() = 0; | 54 | virtual void real_execute() = 0; |
52 | 55 | ||
53 | }; | 56 | }; |