summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/bibshortcuthandler.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/bibliography/bibshortcuthandler.hxx')
-rw-r--r--extensions/source/bibliography/bibshortcuthandler.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/extensions/source/bibliography/bibshortcuthandler.hxx b/extensions/source/bibliography/bibshortcuthandler.hxx
index 6eb4231b3182..f8c87f395fb5 100644
--- a/extensions/source/bibliography/bibshortcuthandler.hxx
+++ b/extensions/source/bibliography/bibshortcuthandler.hxx
@@ -31,45 +31,45 @@
class BibShortCutHandler
{
private:
- Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window
+ vcl::Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window
protected:
- inline BibShortCutHandler( Window* pBaseClass );
+ inline BibShortCutHandler( vcl::Window* pBaseClass );
public:
virtual ~BibShortCutHandler();
virtual bool HandleShortCutKey( const KeyEvent& rKeyEvent ); // returns true, if key was handled
- inline Window* GetWindow( void );
+ inline vcl::Window* GetWindow( void );
};
-inline BibShortCutHandler::BibShortCutHandler( Window* _pBaseClass ) : pBaseClass( _pBaseClass )
+inline BibShortCutHandler::BibShortCutHandler( vcl::Window* _pBaseClass ) : pBaseClass( _pBaseClass )
{
}
-inline Window* BibShortCutHandler::GetWindow( void )
+inline vcl::Window* BibShortCutHandler::GetWindow( void )
{
return pBaseClass;
}
-class BibWindow : public Window, public BibShortCutHandler
+class BibWindow : public vcl::Window, public BibShortCutHandler
{
public:
- BibWindow( Window* pParent,WinBits nStyle = WB_3DLOOK);
+ BibWindow( vcl::Window* pParent,WinBits nStyle = WB_3DLOOK);
virtual ~BibWindow();
};
class BibSplitWindow : public SplitWindow, public BibShortCutHandler
{
public:
- BibSplitWindow( Window* pParent,WinBits nStyle = WB_3DLOOK);
+ BibSplitWindow( vcl::Window* pParent,WinBits nStyle = WB_3DLOOK);
virtual ~BibSplitWindow();
};
class BibTabPage : public TabPage, public BibShortCutHandler
{
public:
- BibTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription );
+ BibTabPage( vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription );
virtual ~BibTabPage();
};