summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-12 08:36:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-12 09:02:03 +0100
commitd24df3fc66614eda59d38f6ab409be73f8a20dad (patch)
tree0e8d4a1c123b12b6718b185e338ff6e1d0cb1d09 /dbaccess
parent4347d844646907ba31dc1e0c7f53c5a93d986c2a (diff)
callcatcher: another round of ResId removals
Change-Id: Ia3acdb3501b7735820258cb090e731f5814bc07f
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/control/curledit.cxx8
-rw-r--r--dbaccess/source/ui/control/dbtreelistbox.cxx10
-rw-r--r--dbaccess/source/ui/dlg/adminpages.cxx7
-rw-r--r--dbaccess/source/ui/dlg/adminpages.hxx3
-rw-r--r--dbaccess/source/ui/inc/curledit.hxx1
-rw-r--r--dbaccess/source/ui/inc/dbtreelistbox.hxx3
6 files changed, 0 insertions, 32 deletions
diff --git a/dbaccess/source/ui/control/curledit.cxx b/dbaccess/source/ui/control/curledit.cxx
index 3a24c5891c40..3c856db50c18 100644
--- a/dbaccess/source/ui/control/curledit.cxx
+++ b/dbaccess/source/ui/control/curledit.cxx
@@ -24,14 +24,6 @@
namespace dbaui
{
-// OConnectionURLEdit
-OConnectionURLEdit::OConnectionURLEdit(Window* _pParent, const ResId& _rResId,bool _bShowPrefix)
- :Edit(_pParent, _rResId)
- ,m_pTypeCollection(NULL)
- ,m_pForcedPrefix(NULL)
- ,m_bShowPrefix(_bShowPrefix)
-{
-}
OConnectionURLEdit::OConnectionURLEdit(Window* _pParent, WinBits _nBits,bool _bShowPrefix)
:Edit(_pParent, _nBits)
diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx
index bd23fa942dce..cdc185fb3e4c 100644
--- a/dbaccess/source/ui/control/dbtreelistbox.cxx
+++ b/dbaccess/source/ui/control/dbtreelistbox.cxx
@@ -64,16 +64,6 @@ DBTreeListBox::DBTreeListBox( Window* pParent, WinBits nWinStyle ,bool _bHandleE
init();
}
-DBTreeListBox::DBTreeListBox( Window* pParent, const ResId& rResId,bool _bHandleEnterKey)
- :SvTreeListBox(pParent,rResId)
- ,m_pDragedEntry(NULL)
- ,m_pActionListener(NULL)
- ,m_pContextMenuProvider( NULL )
- ,m_bHandleEnterKey(_bHandleEnterKey)
-{
- init();
-}
-
void DBTreeListBox::init()
{
sal_uInt16 nSize = SPACEBETWEENENTRIES;
diff --git a/dbaccess/source/ui/dlg/adminpages.cxx b/dbaccess/source/ui/dlg/adminpages.cxx
index 2673f574d48f..640db09da3de 100644
--- a/dbaccess/source/ui/dlg/adminpages.cxx
+++ b/dbaccess/source/ui/dlg/adminpages.cxx
@@ -221,13 +221,6 @@ namespace dbaui
}
}
- void OGenericAdministrationPage::SetControlFontWeight(Window* _pWindow, FontWeight _eWeight)
- {
- Font aFont = _pWindow->GetControlFont();
- aFont.SetWeight( _eWeight );
- _pWindow->SetControlFont( aFont );
- }
-
IMPL_LINK(OGenericAdministrationPage, OnTestConnectionClickHdl, PushButton*, /*_pButton*/)
{
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
diff --git a/dbaccess/source/ui/dlg/adminpages.hxx b/dbaccess/source/ui/dlg/adminpages.hxx
index c56733c28c03..88a878437ebd 100644
--- a/dbaccess/source/ui/dlg/adminpages.hxx
+++ b/dbaccess/source/ui/dlg/adminpages.hxx
@@ -228,9 +228,6 @@ namespace dbaui
static void fillString(SfxItemSet& _rSet,Edit* _pEdit,sal_uInt16 _nID, bool& _bChangedSomething);
protected:
- // used to set the right Pane header of a wizard to bold
- void SetControlFontWeight(Window* _pWindow, FontWeight _eWeight = WEIGHT_BOLD);
-
/** This link be used for controls where the tabpage does not need to take any special action when the control
is modified. The implementation just calls callModifiedHdl.
*/
diff --git a/dbaccess/source/ui/inc/curledit.hxx b/dbaccess/source/ui/inc/curledit.hxx
index 9ff64d87847f..4a1238dbb4ad 100644
--- a/dbaccess/source/ui/inc/curledit.hxx
+++ b/dbaccess/source/ui/inc/curledit.hxx
@@ -41,7 +41,6 @@ class OConnectionURLEdit : public Edit
bool m_bShowPrefix; // when <TRUE> the prefix will be visible, otherwise not
public:
- OConnectionURLEdit(Window* pParent, const ResId& rResId,bool _bShowPrefix = false);
OConnectionURLEdit(Window* pParent, WinBits _nBits,bool _bShowPrefix = false);
virtual ~OConnectionURLEdit();
diff --git a/dbaccess/source/ui/inc/dbtreelistbox.hxx b/dbaccess/source/ui/inc/dbtreelistbox.hxx
index 259d03359d68..ce9ad84ea2d4 100644
--- a/dbaccess/source/ui/inc/dbtreelistbox.hxx
+++ b/dbaccess/source/ui/inc/dbtreelistbox.hxx
@@ -83,9 +83,6 @@ namespace dbaui
DBTreeListBox( Window* pParent
,WinBits nWinStyle=0
,bool _bHandleEnterKey = false);
- DBTreeListBox( Window* pParent
- ,const ResId& rResId
- ,bool _bHandleEnterKey = false);
virtual ~DBTreeListBox();
void setControlActionListener( IControlActionListener* _pListener ) { m_pActionListener = _pListener; }