summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uitest/ui_logger_dsl/Special_commands.tx2
-rw-r--r--uitest/ui_logger_dsl/example.ul2
-rw-r--r--vcl/source/uitest/logger.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/uitest/ui_logger_dsl/Special_commands.tx b/uitest/ui_logger_dsl/Special_commands.tx
index 6fbb0ad0100d..b73fddf805a4 100644
--- a/uitest/ui_logger_dsl/Special_commands.tx
+++ b/uitest/ui_logger_dsl/Special_commands.tx
@@ -27,7 +27,7 @@ Select_command:
'Select from Pos' from=INT 'to Pos' to=INT
;
setZoom_command:
- 'Set Zoom to be' zoom_value=INT
+ 'Set Zoom to ' zoom_value=INT
;
GOTO_command:
'GOTO page number' page_num=INT
diff --git a/uitest/ui_logger_dsl/example.ul b/uitest/ui_logger_dsl/example.ul
index 6029feb5c4b3..93bc14c59c5a 100644
--- a/uitest/ui_logger_dsl/example.ul
+++ b/uitest/ui_logger_dsl/example.ul
@@ -15,7 +15,7 @@ Click on "ok" from CharacterPropertiesDialog
Close Dialog
Type on writer {"TEXT": "s"}
Select from Pos 5 to Pos 7
-Set Zoom to be 100
+Set Zoom to 100
GOTO page number 1
Open QuerySaveDialog
Click on "ok" from QuerySaveDialog
diff --git a/vcl/source/uitest/logger.cxx b/vcl/source/uitest/logger.cxx
index 1455c0d73d71..a7013819ee35 100644
--- a/vcl/source/uitest/logger.cxx
+++ b/vcl/source/uitest/logger.cxx
@@ -291,7 +291,7 @@ void UITestLogger::logEvent(const EventDescription& rDescription)
aLogLine = "GOTO page number " + GetValueInMapWithIndex(rDescription.aParameters,0);
}
else if(rDescription.aAction=="SET"){
- aLogLine = "Set Zoom to be " + GetValueInMapWithIndex(rDescription.aParameters,0);
+ aLogLine = "Set Zoom to " + GetValueInMapWithIndex(rDescription.aParameters,0);
}
else if(rDescription.aAction=="SELECT"){
OUString to = GetValueInMapWithIndex(rDescription.aParameters,0);