diff options
author | Jaime Navarro <jaime.navarro@alu.umh.es> | 2012-04-20 10:22:50 +0200 |
---|---|---|
committer | Jesús Corrius <jesus@softcatala.org> | 2012-04-20 10:22:50 +0200 |
commit | fe84f6dbab168e9bdc1459c446c4dff0afb17fdc (patch) | |
tree | 94a8850c36f670ac8079d9db0928932ce96725e8 /formula/source/ui | |
parent | e4509eea8fc7c07ddff48edf0d4c015c2663d896 (diff) |
Remove unused method ArgInput::GetArgSelection
Diffstat (limited to 'formula/source/ui')
-rw-r--r-- | formula/source/ui/dlg/ControlHelper.hxx | 3 | ||||
-rw-r--r-- | formula/source/ui/dlg/funcutl.cxx | 19 |
2 files changed, 0 insertions, 22 deletions
diff --git a/formula/source/ui/dlg/ControlHelper.hxx b/formula/source/ui/dlg/ControlHelper.hxx index b1aa6369218a..56f04e935f7b 100644 --- a/formula/source/ui/dlg/ControlHelper.hxx +++ b/formula/source/ui/dlg/ControlHelper.hxx @@ -163,9 +163,6 @@ public: void SetArgSelection (const Selection& rSel ); void ReplaceSelOfArg (const String& rStr ); - Selection GetArgSelection(); - - ArgEdit* GetArgEdPtr() {return pEdArg;} diff --git a/formula/source/ui/dlg/funcutl.cxx b/formula/source/ui/dlg/funcutl.cxx index 36115d0f6a4a..5673304a9d36 100644 --- a/formula/source/ui/dlg/funcutl.cxx +++ b/formula/source/ui/dlg/funcutl.cxx @@ -343,25 +343,6 @@ void ArgInput::SetArgSelection (const Selection& rSel ) if(pEdArg !=NULL) pEdArg ->SetSelection(rSel ); } -/************************************************************************* -#* Member: SetArgSelection Date:13.01.97 -#*------------------------------------------------------------------------ -#* -#* Class: ArgInput -#* -#* Function: Returns the Selection for the EditBox. -#* -#* Input: String -#* -#* Output: --- -#* -#************************************************************************/ -Selection ArgInput::GetArgSelection () -{ - Selection aSel; - if(pEdArg !=NULL) aSel=pEdArg ->GetSelection(); - return aSel; -} /************************************************************************* #* Member: SetArgVal Date:13.01.97 |