diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-07 13:11:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-07 13:11:24 +0200 |
commit | 2a6451d77d878a5cbaba316523249ae967020014 (patch) | |
tree | 35afcb6cdc47355fcc323cb5b29ee13acf2251ac /sfx2/source/appl/shutdowniconaqua.mm | |
parent | 869aaf83bd6159dbfbc3e648b20537fd135dc6ca (diff) |
fix osx build
Change-Id: I6672fa579b0e7fe0c02d5b1a3c54e99ac96f5322
Diffstat (limited to 'sfx2/source/appl/shutdowniconaqua.mm')
-rw-r--r-- | sfx2/source/appl/shutdowniconaqua.mm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sfx2/source/appl/shutdowniconaqua.mm b/sfx2/source/appl/shutdowniconaqua.mm index eeda5694858d..6a91a21ff3b5 100644 --- a/sfx2/source/appl/shutdowniconaqua.mm +++ b/sfx2/source/appl/shutdowniconaqua.mm @@ -439,16 +439,16 @@ void aqua_init_systray() const char* pAsciiURLDescription; } aMenuItems[] = { - { SvtModuleOptions::E_SWRITER, MI_WRITER, WRITER_URL }, - { SvtModuleOptions::E_SCALC, MI_CALC, CALC_URL }, - { SvtModuleOptions::E_SIMPRESS, MI_IMPRESS, IMPRESS_WIZARD_URL }, - { SvtModuleOptions::E_SDRAW, MI_DRAW, DRAW_URL }, - { SvtModuleOptions::E_SDATABASE, MI_BASE, BASE_URL }, - { SvtModuleOptions::E_SMATH, MI_MATH, MATH_URL } + { SvtModuleOptions::EModule::WRITER, MI_WRITER, WRITER_URL }, + { SvtModuleOptions::EModule::CALC, MI_CALC, CALC_URL }, + { SvtModuleOptions::EModule::IMPRESS, MI_IMPRESS, IMPRESS_WIZARD_URL }, + { SvtModuleOptions::EModule::DRAW, MI_DRAW, DRAW_URL }, + { SvtModuleOptions::EModule::DATABASE, MI_BASE, BASE_URL }, + { SvtModuleOptions::EModule::MATH, MI_MATH, MATH_URL } }; // insert entry for startcenter - if( aModuleOptions.IsModuleInstalled( SvtModuleOptions::E_SSTARTMODULE ) ) + if( aModuleOptions.IsModuleInstalled( SvtModuleOptions::EModule::STARTMODULE ) ) { appendMenuItem( pMenu, nil, pShutdownIcon->GetResString( STR_QUICKSTART_STARTCENTER ), MI_STARTMODULE, OUString( "n" ) ); if( [NSApp respondsToSelector: @selector(setDockIconClickHandler:)] ) |