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 3e9d152d5583..20d7c70e7c0e 100644
--- a/extensions/source/bibliography/bibshortcuthandler.hxx
+++ b/extensions/source/bibliography/bibshortcuthandler.hxx
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -39,16 +39,16 @@
class BibShortCutHandler
{
private:
- Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window
+ Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window
protected:
- inline BibShortCutHandler( Window* pBaseClass );
+ inline BibShortCutHandler( Window* pBaseClass );
public:
- virtual ~BibShortCutHandler();
- virtual BOOL HandleShortCutKey( const KeyEvent& rKeyEvent ); // returns true, if key was handled
+ virtual ~BibShortCutHandler();
+ virtual BOOL HandleShortCutKey( const KeyEvent& rKeyEvent ); // returns true, if key was handled
- inline Window* GetWindow( void );
+ inline Window* GetWindow( void );
};
inline BibShortCutHandler::BibShortCutHandler( Window* _pBaseClass ) : pBaseClass( _pBaseClass )
@@ -65,7 +65,7 @@ class BibWindow : public Window, public BibShortCutHandler
{
public:
BibWindow( Window* pParent,WinBits nStyle = WB_3DLOOK);
- virtual ~BibWindow();
+ virtual ~BibWindow();
};
@@ -73,7 +73,7 @@ class BibSplitWindow : public SplitWindow, public BibShortCutHandler
{
public:
BibSplitWindow( Window* pParent,WinBits nStyle = WB_3DLOOK);
- virtual ~BibSplitWindow();
+ virtual ~BibSplitWindow();
};
@@ -81,7 +81,7 @@ class BibTabPage : public TabPage, public BibShortCutHandler
{
public:
BibTabPage( Window* pParent, const ResId& rResId );
- virtual ~BibTabPage();
+ virtual ~BibTabPage();
};
#endif