diff options
author | Eike Rathke <er@openoffice.org> | 2002-11-21 15:17:20 +0000 |
---|---|---|
committer | Eike Rathke <er@openoffice.org> | 2002-11-21 15:17:20 +0000 |
commit | 455a1bb56a39b27535694a9ce9218eef78be61f7 (patch) | |
tree | 85cafbd5890227422f4f63541698f64d42fed006 /sc/inc/addincol.hxx | |
parent | 4272a35a3661ede5f97dbaa1e1b3cfefc72d87fa (diff) |
#i2800# #99677# performance: ScUnoAddInCollection::FindFunction MUST be called with an upper case name
Diffstat (limited to 'sc/inc/addincol.hxx')
-rw-r--r-- | sc/inc/addincol.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/inc/addincol.hxx b/sc/inc/addincol.hxx index 23062ea22941..09a27c0d5883 100644 --- a/sc/inc/addincol.hxx +++ b/sc/inc/addincol.hxx @@ -2,9 +2,9 @@ * * $RCSfile: addincol.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: er $ $Date: 2002-11-19 22:05:18 $ + * last change: $Author: er $ $Date: 2002-11-21 16:15:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -146,7 +146,8 @@ public: ScUnoAddInCollection(); ~ScUnoAddInCollection(); - String FindFunction( const String& rName, BOOL bLocalFirst ); // user entered name + /// User enetered name. rUpperName MUST already be upper case! + String FindFunction( const String& rUpperName, BOOL bLocalFirst ); const ScUnoAddInFuncData* GetFuncData( const String& rName ); // exact name void LocalizeString( String& rName ); // modify rName - input: exact name |