Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Redor2016-08-02 09:37:31 +0000
committerLaurent Redor2016-08-03 07:07:42 +0000
commit540530d6871584df10a20fbd7bc6703c308ad32f (patch)
tree4c63afa6fc8370c18cab66c625ef43f6633aa3ca
parent5565cc5f511a623335f16118799f9fcb5cacd5ec (diff)
downloadorg.eclipse.sirius-540530d6871584df10a20fbd7bc6703c308ad32f.tar.gz
org.eclipse.sirius-540530d6871584df10a20fbd7bc6703c308ad32f.tar.xz
org.eclipse.sirius-540530d6871584df10a20fbd7bc6703c308ad32f.zip
[496466] Wrong string replacement in previous commit 47ed3d8
"Activate Layouting Mode" has been replaced by Messages.SetLayoutingModeCommandAndUpdateActionImage_activateLabel instead of Messages.LayoutingModeSwitchingAction_activate in previous commit [1]. [1] http://git.eclipse.org/c/sirius/org.eclipse.sirius.git/diff/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java?id=47ed3d8bc8438d1ed6ed77743365d6e5a53f06f2 Bug: 496466 Change-Id: I14892196614af773f5b45f12b63ace3e19e4b0d8 Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java
index 6eb9f97eb4..397d154f94 100644
--- a/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java
+++ b/plugins/org.eclipse.sirius.tests.swtbot/src/org/eclipse/sirius/tests/swtbot/tabbar/TabBarTest.java
@@ -93,7 +93,7 @@ public class TabBarTest extends AbstractSiriusSwtBotGefTestCase {
private static final String[] DIAGRAM_TOOLBARBUTTONS_TOOLTIPS = { Messages.SiriusDiagramActionBarContributor_refreshDiagram, Messages.SelectHiddenElementsAction_tooltip,
Messages.SelectPinnedElementsAction_tooltip, Messages.PasteFormatAction_toolTipText, "Zoom In (Ctrl+=)", "Zoom Out (Ctrl+-)", Messages.SaveAsImageFileAction_label };
- private static final String[] DIAGRAM_TOOLBARTOGGLEBUTTONS_TOOLTIPS = { Messages.SetLayoutingModeCommandAndUpdateActionImage_activateLabel };
+ private static final String[] DIAGRAM_TOOLBARTOGGLEBUTTONS_TOOLTIPS = { Messages.LayoutingModeSwitchingAction_activate };
private static final String[] CONTAINER_TOOLBARDROPDOWNBUTTONS_TOOLTIPS = { "Arrange Selection", "Align Left", DistributeAction.getTooltip(DistributeAction.GAPS_HORIZONTALLY), "Font Color",
"Fill &Color", "Li&ne Color", "Line Style" };

Back to the top