diff options
author | Mathias Hasselmann <mathias@openismus.com> | 2013-03-21 08:01:34 +0100 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2013-03-27 15:03:23 +0000 |
commit | 4fc429bf61b43fb78eb17aa63004d8bce6757fd2 (patch) | |
tree | 6479c8f089956d18df68c5aa1443b64d3ac18f79 /dbaccess | |
parent | f3f512bdfd664ea27ff2b51175dcf85d1949d06b (diff) |
Remove ResId support for a few dbaui controls
This removes the ResId constructors of dbaui::OpenDocumentButton
and dbaui::OpenDocumentListBox.
Change-Id: Ib1d80a3ae7757c81ef0ee6f25ee24e91adce532d
Reviewed-on: https://gerrit.libreoffice.org/2888
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/control/opendoccontrols.cxx | 12 | ||||
-rw-r--r-- | dbaccess/source/ui/inc/opendoccontrols.hxx | 2 |
2 files changed, 0 insertions, 14 deletions
diff --git a/dbaccess/source/ui/control/opendoccontrols.cxx b/dbaccess/source/ui/control/opendoccontrols.cxx index 907840e6ff7f..41a458c1961b 100644 --- a/dbaccess/source/ui/control/opendoccontrols.cxx +++ b/dbaccess/source/ui/control/opendoccontrols.cxx @@ -161,12 +161,6 @@ namespace dbaui //==================================================================== //= OpenButton //==================================================================== - //-------------------------------------------------------------------- - OpenDocumentButton::OpenDocumentButton( Window* _pParent, const sal_Char* _pAsciiModuleName, const ResId& _rResId ) - :PushButton( _pParent, _rResId ) - { - impl_init( _pAsciiModuleName ); - } //-------------------------------------------------------------------- OpenDocumentButton::OpenDocumentButton( Window* _pParent, const sal_Char* _pAsciiModuleName ) @@ -204,12 +198,6 @@ namespace dbaui //==================================================================== //= OpenDocumentListBox //==================================================================== - //-------------------------------------------------------------------- - OpenDocumentListBox::OpenDocumentListBox( Window* _pParent, const sal_Char* _pAsciiModuleName, const ResId& _rResId ) - :ListBox( _pParent, _rResId ) - { - impl_init( _pAsciiModuleName ); - } //-------------------------------------------------------------------- OpenDocumentListBox::OpenDocumentListBox( Window* _pParent, const sal_Char* _pAsciiModuleName ) diff --git a/dbaccess/source/ui/inc/opendoccontrols.hxx b/dbaccess/source/ui/inc/opendoccontrols.hxx index 617476d4c861..5e2edda403cf 100644 --- a/dbaccess/source/ui/inc/opendoccontrols.hxx +++ b/dbaccess/source/ui/inc/opendoccontrols.hxx @@ -44,7 +44,6 @@ namespace dbaui ::rtl::OUString m_sModule; public: - OpenDocumentButton( Window* _pParent, const sal_Char* _pAsciiModuleName, const ResId& _rResId ); OpenDocumentButton( Window* _pParent, const sal_Char* _pAsciiModuleName ); protected: @@ -64,7 +63,6 @@ namespace dbaui MapIndexToStringPair m_aURLs; public: - OpenDocumentListBox( Window* _pParent, const sal_Char* _pAsciiModuleName, const ResId& _rResId ); OpenDocumentListBox( Window* _pParent, const sal_Char* _pAsciiModuleName ); String GetSelectedDocumentURL() const; |