summaryrefslogtreecommitdiff
path: root/sc/inc/funcdesc.hxx
diff options
context:
space:
mode:
authorSören Möller <soerenmoeller2001@gmail.com>2011-01-09 20:30:43 +0100
committerKohei Yoshida <kyoshida@novell.com>2011-01-10 21:12:11 -0500
commit9e6c92b0c01017f7bf4162783d529e1f199d0057 (patch)
treeec8c988e4396bd82a4674c149fb1ba2f62420568 /sc/inc/funcdesc.hxx
parent4cdd1c978ed2076ca59e91146b3cc04ab836c434 (diff)
Changed String to OUString in funcdesc.hxx
I have changed variables and functions in sc/inc/funcdesc.hxx to use OUString instead of deprecated String, and I have also changed all uses of these variables/functions to use OUString
Diffstat (limited to 'sc/inc/funcdesc.hxx')
-rw-r--r--sc/inc/funcdesc.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sc/inc/funcdesc.hxx b/sc/inc/funcdesc.hxx
index be18f43ee558..c7fc86853fa8 100644
--- a/sc/inc/funcdesc.hxx
+++ b/sc/inc/funcdesc.hxx
@@ -57,6 +57,7 @@ public:
parameters only one element is added to the end of the sequence. */
virtual void fillVisibleArgumentMapping(::std::vector<USHORT>& _rArguments) const ;
virtual void initArgumentInfo() const;
+ /** Returns the full function signature: "FUNCTIONNAME( parameter list )". */
virtual ::rtl::OUString getSignature() const ;
virtual long getHelpId() const ;
@@ -81,9 +82,7 @@ public:
void Clear();
/** Returns a semicolon separated list of all parameter names. */
- String GetParamList () const;
- /** Returns the full function signature: "FUNCTIONNAME( parameter list )". */
- String GetSignature () const;
+ ::rtl::OUString GetParamList () const;
@@ -158,7 +157,7 @@ public:
ScFunctionMgr();
virtual ~ScFunctionMgr();
- static String GetCategoryName(sal_uInt32 _nCategoryNumber );
+ static ::rtl::OUString GetCategoryName(sal_uInt32 _nCategoryNumber );
const ScFuncDesc* Get( const String& rFName ) const;
const ScFuncDesc* Get( USHORT nFIndex ) const;