summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-20 14:15:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-20 16:35:09 +0100
commitafa5d63e2adccefd5cabfe2e0f6f78ce217a294d (patch)
treeff95aa8bed02045d7700b3a327c196b12ed6c801 /extensions
parentcbd717a384e83b54cc7f3e6785504667dcede980 (diff)
TabPages are no longer loaded from resource files
Change-Id: I009e0f388cfe1861cef89d2148a02380dd47c1ff
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/bibliography/bibcont.cxx5
-rw-r--r--extensions/source/bibliography/bibshortcuthandler.hxx8
2 files changed, 2 insertions, 11 deletions
diff --git a/extensions/source/bibliography/bibcont.cxx b/extensions/source/bibliography/bibcont.cxx
index d4460e763c77..346478b97c87 100644
--- a/extensions/source/bibliography/bibcont.cxx
+++ b/extensions/source/bibliography/bibcont.cxx
@@ -60,11 +60,6 @@ BibSplitWindow::~BibSplitWindow()
{
}
-
-BibTabPage::BibTabPage( Window* pParent, const ResId& rResId ) : TabPage( pParent, rResId ), BibShortCutHandler( this )
-{
-}
-
BibTabPage::BibTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ) :
TabPage( pParent, rID, rUIXMLDescription ), BibShortCutHandler( this )
{
diff --git a/extensions/source/bibliography/bibshortcuthandler.hxx b/extensions/source/bibliography/bibshortcuthandler.hxx
index 9b862bc64b42..6eb4231b3182 100644
--- a/extensions/source/bibliography/bibshortcuthandler.hxx
+++ b/extensions/source/bibliography/bibshortcuthandler.hxx
@@ -52,7 +52,6 @@ inline Window* BibShortCutHandler::GetWindow( void )
return pBaseClass;
}
-
class BibWindow : public Window, public BibShortCutHandler
{
public:
@@ -60,7 +59,6 @@ public:
virtual ~BibWindow();
};
-
class BibSplitWindow : public SplitWindow, public BibShortCutHandler
{
public:
@@ -68,13 +66,11 @@ public:
virtual ~BibSplitWindow();
};
-
class BibTabPage : public TabPage, public BibShortCutHandler
{
public:
- BibTabPage( Window* pParent, const ResId& rResId );
- BibTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription );
- virtual ~BibTabPage();
+ BibTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription );
+ virtual ~BibTabPage();
};
#endif