diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2011-01-10 22:17:01 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-01-10 22:17:01 -0500 |
commit | 90ce131cb6f8f942e1215c9d13d0a80dc9332e42 (patch) | |
tree | 3a07e3376c5335d613ec5017188e60ec26c80998 /sc/inc | |
parent | fc6329314dbe23168afa96c49adbc0385748b9a1 (diff) |
Removed OUString to String casting & prefer static_cast over C-style cast.
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/funcdesc.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/funcdesc.hxx b/sc/inc/funcdesc.hxx index c7fc86853fa8..6187121e7640 100644 --- a/sc/inc/funcdesc.hxx +++ b/sc/inc/funcdesc.hxx @@ -159,7 +159,7 @@ public: static ::rtl::OUString GetCategoryName(sal_uInt32 _nCategoryNumber ); - const ScFuncDesc* Get( const String& rFName ) const; + const ScFuncDesc* Get( const ::rtl::OUString& rFName ) const; const ScFuncDesc* Get( USHORT nFIndex ) const; const ScFuncDesc* First( USHORT nCategory = 0 ) const; const ScFuncDesc* Next() const; |