-Woverloaded-virtual

svn path=/trunk/KDE/kdebase/workspace/; revision=739149
This commit is contained in:
Luboš Luňák 2007-11-20 16:19:06 +00:00
parent d18e4933a0
commit ceb07f1c5c
2 changed files with 2 additions and 1 deletions

View file

@ -84,6 +84,7 @@ class EffectsHandlerImpl : public EffectsHandler
virtual int desktopDown( int desktop, bool wrap ) const;
virtual Window createInputWindow( Effect* e, int x, int y, int w, int h, const QCursor& cursor );
using EffectsHandler::createInputWindow;
virtual void destroyInputWindow( Window w );
virtual bool checkInputWindowEvent( XEvent* e );
virtual void checkInputWindowStacking();

View file

@ -323,7 +323,7 @@ class KWIN_EXPORT EffectsHandler
// covering the whole screen is created and all mouse events will be intercepted by it.
// The effect's windowInputMouseEvent() will get called with such events.
virtual Window createInputWindow( Effect* e, int x, int y, int w, int h, const QCursor& cursor ) = 0;
virtual Window createInputWindow( Effect* e, const QRect& r, const QCursor& cursor );
Window createInputWindow( Effect* e, const QRect& r, const QCursor& cursor );
virtual Window createFullScreenInputWindow( Effect* e, const QCursor& cursor );
virtual void destroyInputWindow( Window w ) = 0;
virtual QPoint cursorPos() const = 0;