diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-03 14:52:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-03 14:52:50 -0600 |
commit | 57b56bb3f70096f08aef681d9ed42ea11ba9630b (patch) | |
tree | 31e5ee779b74cf4b110aeff26d49d85b93df795c /twin/KWinInterface.h | |
parent | 786e248cea658856ef647b7ab8d3e8cf7c057918 (diff) | |
download | tdebase-57b56bb3f70096f08aef681d9ed42ea11ba9630b.tar.gz tdebase-57b56bb3f70096f08aef681d9ed42ea11ba9630b.zip |
Fix DCOP interface to window suspend/resume functions
This resolves Bug 1354
Diffstat (limited to 'twin/KWinInterface.h')
-rw-r--r-- | twin/KWinInterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/twin/KWinInterface.h b/twin/KWinInterface.h index 5a270d9f3..ec1d9f1f8 100644 --- a/twin/KWinInterface.h +++ b/twin/KWinInterface.h @@ -12,9 +12,9 @@ class KWinInterface : virtual public DCOPObject virtual ASYNC cascadeDesktop() = 0; virtual ASYNC unclutterDesktop() = 0; virtual ASYNC reconfigure() = 0; - virtual ASYNC killWindow() = 0; - virtual ASYNC suspendWindow() = 0; - virtual ASYNC resumeWindow() = 0; + virtual ASYNC killWindowId(unsigned long winId) = 0; + virtual ASYNC suspendWindowId(unsigned long winId) = 0; + virtual ASYNC resumeWindowId(unsigned long winId) = 0; virtual void refresh() = 0; virtual void doNotManage(TQString)= 0; virtual void showWindowMenuAt(unsigned long winId, int x, int y)= 0; |