summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorJaime Navarro <jaime.navarro@alu.umh.es>2012-04-20 10:22:50 +0200
committerJesús Corrius <jesus@softcatala.org>2012-04-20 10:22:50 +0200
commitfe84f6dbab168e9bdc1459c446c4dff0afb17fdc (patch)
tree94a8850c36f670ac8079d9db0928932ce96725e8 /formula
parente4509eea8fc7c07ddff48edf0d4c015c2663d896 (diff)
Remove unused method ArgInput::GetArgSelection
Diffstat (limited to 'formula')
-rw-r--r--formula/source/ui/dlg/ControlHelper.hxx3
-rw-r--r--formula/source/ui/dlg/funcutl.cxx19
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