summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-02 09:01:04 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-02 11:59:52 +0100
commit8e06393ffc3502382d5f8c586d298d02190f9d24 (patch)
treec16c13c91029f9e1c4633600e0ab191cd3dbeb95 /sw
parent3a5024bc0fd4c30f06da350b5c56300368c582e8 (diff)
remove post .ui conversion unused ResId loaders
Change-Id: Ib6a5455256f4712fc62554cbcbe279e9702d0552
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/cctrl/actctrl.cxx6
-rw-r--r--sw/source/ui/inc/actctrl.hxx6
-rw-r--r--sw/source/ui/inc/colex.hxx16
3 files changed, 0 insertions, 28 deletions
diff --git a/sw/source/ui/cctrl/actctrl.cxx b/sw/source/ui/cctrl/actctrl.cxx
index 05b32005d61f..faef4e9bf922 100644
--- a/sw/source/ui/cctrl/actctrl.cxx
+++ b/sw/source/ui/cctrl/actctrl.cxx
@@ -50,12 +50,6 @@ long NumEditAction::Notify( NotifyEvent& rNEvt )
return nHandled;
}
-NoSpaceEdit::NoSpaceEdit( Window* pParent, const ResId& rResId)
- : Edit(pParent, rResId)
- , sForbiddenChars(OUString(" "))
-{
-}
-
NoSpaceEdit::NoSpaceEdit(Window* pParent)
: Edit(pParent, WB_BORDER|WB_TABSTOP)
, sForbiddenChars(OUString(" "))
diff --git a/sw/source/ui/inc/actctrl.hxx b/sw/source/ui/inc/actctrl.hxx
index 223516670c72..383934f99115 100644
--- a/sw/source/ui/inc/actctrl.hxx
+++ b/sw/source/ui/inc/actctrl.hxx
@@ -52,7 +52,6 @@ protected:
virtual void Modify();
public:
- NoSpaceEdit( Window* pParent, const ResId& rResId);
NoSpaceEdit( Window* pParent );
virtual ~NoSpaceEdit();
void SetForbiddenChars(const String& rSet){sForbiddenChars = rSet;}
@@ -65,11 +64,6 @@ public:
class TableNameEdit : public NoSpaceEdit
{
public:
- TableNameEdit(Window* pWin, const ResId& rResId)
- : NoSpaceEdit(pWin, rResId)
- {
- SetForbiddenChars(OUString(" .<>"));
- }
TableNameEdit(Window* pWin)
: NoSpaceEdit(pWin)
{
diff --git a/sw/source/ui/inc/colex.hxx b/sw/source/ui/inc/colex.hxx
index 6d786c1e128c..9caeec1cb8d6 100644
--- a/sw/source/ui/inc/colex.hxx
+++ b/sw/source/ui/inc/colex.hxx
@@ -31,12 +31,6 @@ class SfxItemSet;
class SW_DLLPUBLIC SwPageExample : public SvxPageWindow
{
public:
- SwPageExample(Window* pPar, const ResId& rResId)
- : SvxPageWindow(pPar, rResId)
- {
- SetSize(SvxPaperInfo::GetPaperSize(PAPER_A4));
- }
-
SwPageExample(Window* pPar)
: SvxPageWindow(pPar)
{
@@ -57,10 +51,6 @@ protected:
const sal_Bool bSecond,
const sal_Bool bEnabled );
public:
- SwPageGridExample(Window* pPar, const ResId& rResId ) :
- SwPageExample(pPar, rResId ),
- pGridItem(0),
- m_bVertical(false){}
SwPageGridExample(Window* pPar) :
SwPageExample(pPar),
pGridItem(0),
@@ -82,12 +72,6 @@ protected:
const sal_Bool bEnabled );
public:
- SwColExample(Window* pPar, const ResId& rResId)
- : SwPageExample(pPar, rResId)
- , pColMgr(0)
- {
- }
-
SwColExample(Window* pPar)
: SwPageExample(pPar)
, pColMgr(0)