diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-12 10:57:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-13 09:50:41 +0100 |
commit | eca06e79c3f2ca02aa30e2e8ec140a7a10c999c3 (patch) | |
tree | 3e3c58147ce2b1d0974550b07cdfd189baf9092f /formula/source/ui | |
parent | 851a92bd022c48c5cc5e2f9943ce550167be124b (diff) |
callcatcher: update unused code list
Change-Id: I2b21cb0b6d9164b18594e2c122ce242062be276d
Diffstat (limited to 'formula/source/ui')
-rw-r--r-- | formula/source/ui/dlg/ControlHelper.hxx | 2 | ||||
-rw-r--r-- | formula/source/ui/dlg/funcpage.cxx | 4 | ||||
-rw-r--r-- | formula/source/ui/dlg/funcpage.hxx | 2 | ||||
-rw-r--r-- | formula/source/ui/dlg/funcutl.cxx | 23 |
4 files changed, 0 insertions, 31 deletions
diff --git a/formula/source/ui/dlg/ControlHelper.hxx b/formula/source/ui/dlg/ControlHelper.hxx index 56f04e935f7b..a81f88935f20 100644 --- a/formula/source/ui/dlg/ControlHelper.hxx +++ b/formula/source/ui/dlg/ControlHelper.hxx @@ -71,8 +71,6 @@ protected: public: - EditBox( Window* pParent, - WinBits nWinStyle = WB_LEFT | WB_BORDER ); EditBox( Window* pParent, const ResId& rResId ); virtual ~EditBox(); diff --git a/formula/source/ui/dlg/funcpage.cxx b/formula/source/ui/dlg/funcpage.cxx index 46696e7f87c1..a0d181514acb 100644 --- a/formula/source/ui/dlg/funcpage.cxx +++ b/formula/source/ui/dlg/funcpage.cxx @@ -45,10 +45,6 @@ namespace formula { -FormulaListBox::FormulaListBox( Window* pParent, WinBits nWinStyle): - ListBox(pParent,nWinStyle) -{} - FormulaListBox::FormulaListBox( Window* pParent, const ResId& rResId ): ListBox(pParent,rResId) {} diff --git a/formula/source/ui/dlg/funcpage.hxx b/formula/source/ui/dlg/funcpage.hxx index ec75b0566f9d..69f4d854afb8 100644 --- a/formula/source/ui/dlg/funcpage.hxx +++ b/formula/source/ui/dlg/funcpage.hxx @@ -59,8 +59,6 @@ protected: virtual long PreNotify( NotifyEvent& rNEvt ); public: - FormulaListBox( Window* pParent, WinBits nWinStyle = WB_BORDER ); - FormulaListBox( Window* pParent, const ResId& rResId ); }; diff --git a/formula/source/ui/dlg/funcutl.cxx b/formula/source/ui/dlg/funcutl.cxx index 5673304a9d36..0bef5413422f 100644 --- a/formula/source/ui/dlg/funcutl.cxx +++ b/formula/source/ui/dlg/funcutl.cxx @@ -672,29 +672,6 @@ IMPL_LINK( ArgInput, EdModifyHdl,ArgEdit*, pEd ) #* #* Function: Constructor from Class ArgInput #* -#* Input: Parent, Window-Style -#* -#* Output: --- -#* -#************************************************************************/ -EditBox::EditBox( Window* pParent,WinBits nWinStyle) - :Control(pParent,nWinStyle|WB_DIALOGCONTROL) -{ - pMEdit=new MultiLineEdit(this,WB_LEFT | WB_VSCROLL | (nWinStyle & WB_TABSTOP) | - WB_NOBORDER | WB_NOHIDESELECTION | WB_IGNORETAB); - - pMEdit->Show(); - aOldSel=pMEdit->GetSelection(); -} - -/************************************************************************* -#* Member: EditBox Date:20.01.97 -#*------------------------------------------------------------------------ -#* -#* Class: EditBox -#* -#* Function: Constructor from Class ArgInput -#* #* Input: Parent, Resource #* #* Output: --- |