diff options
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/dynamicmenuoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/dynamicmenuoptions.cxx b/unotools/source/config/dynamicmenuoptions.cxx index 8677c39cf257..b432996c76ae 100644 --- a/unotools/source/config/dynamicmenuoptions.cxx +++ b/unotools/source/config/dynamicmenuoptions.cxx @@ -636,7 +636,7 @@ class SelectByPrefix bool operator() ( const OUString& s ) const { // Prefer setup written entries by check first letter of given string. It must be a "s". - return( s.indexOf( PATHPREFIX_SETUP ) == 0 ); + return s.startsWith( PATHPREFIX_SETUP ); } }; |