diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-19 10:34:48 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-19 10:34:48 +0200 |
commit | e636f5768c8843f5c177a2643f3ac8f188a51cb0 (patch) | |
tree | 6c172c3873d2a706b89adbc8fcbc546ec2436f3c | |
parent | f4479f5478a2821faf0974a7b83453b177cf65d3 (diff) |
fix compile error - remove bracket
I messed this up this when doing commit
2c35fff7eca3a143d28dc75e6a73fe1101d2af77
"remove most use of RTL_CONSTASCII_USTRINGPARAM macro"
Change-Id: I2edd094cfdf9ae83d5d2a7a2ab13932277f589c1
-rw-r--r-- | sfx2/source/appl/shutdowniconaqua.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/shutdowniconaqua.mm b/sfx2/source/appl/shutdowniconaqua.mm index 64b0f142c764..2b922dc20f06 100644 --- a/sfx2/source/appl/shutdowniconaqua.mm +++ b/sfx2/source/appl/shutdowniconaqua.mm @@ -451,7 +451,7 @@ void aqua_init_systray() // insert entry for startcenter if( aModuleOptions.IsModuleInstalled( SvtModuleOptions::E_SSTARTMODULE ) ) { - appendMenuItem( pMenu, nil, pShutdownIcon->GetResString( STR_QUICKSTART_STARTCENTER ), MI_STARTMODULE, OUString( "n" ) ) ); + appendMenuItem( pMenu, nil, pShutdownIcon->GetResString( STR_QUICKSTART_STARTCENTER ), MI_STARTMODULE, OUString( "n" ) ); if( [NSApp respondsToSelector: @selector(setDockIconClickHandler:)] ) [NSApp performSelector:@selector(setDockIconClickHandler:) withObject: pExecute]; else |