diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-07-11 06:32:08 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-07-11 06:32:08 +0000 |
commit | 55aa84d4ea043044609b69e4632ee81fa4174348 (patch) | |
tree | 02aeea69807c0587b0ddee6996f3e44195deca7d /sfx2/source/appl | |
parent | 583076c20496786a0634f4837fe2160af74cd2ec (diff) |
INTEGRATION: CWS startcenterfix03 (1.4.56); FILE MERGED
2008/07/01 18:34:37 pl 1.4.56.1: #i91274# add math
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r-- | sfx2/source/appl/shutdowniconaqua.mm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sfx2/source/appl/shutdowniconaqua.mm b/sfx2/source/appl/shutdowniconaqua.mm index b301f3663088..0b57b006e38f 100644 --- a/sfx2/source/appl/shutdowniconaqua.mm +++ b/sfx2/source/appl/shutdowniconaqua.mm @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: shutdowniconaqua.mm,v $ - * $Revision: 1.4 $ + * $Revision: 1.5 $ * * This file is part of OpenOffice.org. * @@ -59,7 +59,8 @@ using namespace ::com::sun::star::beans; #define MI_IMPRESS 4 #define MI_DRAW 5 #define MI_BASE 6 -#define MI_TEMPLATE 7 +#define MI_MATH 7 +#define MI_TEMPLATE 8 @interface QSMenuExecute : NSObject @@ -91,6 +92,9 @@ using namespace ::com::sun::star::beans; case MI_BASE: ShutdownIcon::OpenURL( OUString( RTL_CONSTASCII_USTRINGPARAM( BASE_URL ) ), OUString( RTL_CONSTASCII_USTRINGPARAM( "_default" ) ) ); break; + case MI_MATH: + ShutdownIcon::OpenURL( OUString( RTL_CONSTASCII_USTRINGPARAM( MATH_URL ) ), OUString( RTL_CONSTASCII_USTRINGPARAM( "_default" ) ) ); + break; case MI_TEMPLATE: ShutdownIcon::FromTemplate(); break; @@ -212,7 +216,8 @@ void aqua_init_systray() { 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_SDATABASE, MI_BASE, BASE_URL }, + { SvtModuleOptions::E_SMATH, MI_MATH, MATH_URL } }; // insert the menu entries for launching the applications |