summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2010-07-10 18:21:24 +0200
committerMathias Bauer <mba@openoffice.org>2010-07-10 18:21:24 +0200
commitc61aa274cb5631305cfbaea6f1894db756e911c8 (patch)
tree7ba0d80cc7314143cf37d016e0e15c558781cec5 /automation
parentaa7147590570dcb0813b6fcebb6496179b9df5cb (diff)
CWS changehid: #i111874#: change code to support HelpIds as byte strings
Diffstat (limited to 'automation')
-rw-r--r--automation/source/miniapp/servres.src4
-rw-r--r--automation/source/miniapp/servuid.hxx22
2 files changed, 11 insertions, 15 deletions
diff --git a/automation/source/miniapp/servres.src b/automation/source/miniapp/servres.src
index 426be8b81532..8ba7d4923973 100644
--- a/automation/source/miniapp/servres.src
+++ b/automation/source/miniapp/servres.src
@@ -54,7 +54,6 @@ ModalDialog GROSSER_TEST_DLG
};
OKButton 1
{
- HelpID = 1 ;
Pos = MAP_APPFONT ( 132 , 92 ) ;
Size = MAP_APPFONT ( 64 , 12 ) ;
TabStop = TRUE ;
@@ -176,7 +175,6 @@ Menu MENU_CLIENT
MenuItem
{
Identifier = IDM_FILE ;
- HelpID = IDM_FILE_HELP ;
Text = "~File" ;
SubMenu = Menu
{
@@ -185,7 +183,6 @@ Menu MENU_CLIENT
MenuItem
{
Identifier = IDM_FILE_OPEN_TEST ;
- HelpID = IDM_FILE_OPEN_TEST_HELP ;
Text = "~Open Test Window" ;
};
MenuItem
@@ -196,7 +193,6 @@ Menu MENU_CLIENT
MenuItem
{
Identifier = IDM_FILE_EXIT ;
- HelpID = IDM_FILE_EXIT_HELP ;
Text = "~Beenden" ;
AccelKey = KeyCode
{
diff --git a/automation/source/miniapp/servuid.hxx b/automation/source/miniapp/servuid.hxx
index 7d66c5473fac..c1ba920f3667 100644
--- a/automation/source/miniapp/servuid.hxx
+++ b/automation/source/miniapp/servuid.hxx
@@ -24,14 +24,14 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-#define UID_GROSSER_TEST_DLG 101
-#define UID_CheckBox 202
-#define UID_TriStateBox 303
-#define UID_OKButton 404
-#define UID_TimeField 505
-#define UID_MultiLineEdit 606
-#define UID_RadioButton1 707
-#define UID_RadioButton2 708
-#define UID_MultiListBox 809
-#define UID_ComboBox 910
-#define UID_DateBox 1011
+#define UID_GROSSER_TEST_DLG "AUTOMATION_UID_GROSSER_TEST_DLG"
+#define UID_CheckBox "AUTOMATION_UID_CheckBox"
+#define UID_TriStateBox "AUTOMATION_UID_TriStateBox"
+#define UID_OKButton "AUTOMATION_UID_OKButton"
+#define UID_TimeField "AUTOMATION_UID_TimeField"
+#define UID_MultiLineEdit "AUTOMATION_UID_MultiLineEdit"
+#define UID_RadioButton1 "AUTOMATION_UID_RadioButton1"
+#define UID_RadioButton2 "AUTOMATION_UID_RadioButton2"
+#define UID_MultiListBox "AUTOMATION_UID_MultiListBox"
+#define UID_ComboBox "AUTOMATION_UID_ComboBox"
+#define UID_DateBox "AUTOMATION_UID_DateBox"