Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Coulon2016-11-29 11:17:11 +0000
committerJeff Johnston2016-11-29 20:29:27 +0000
commit5a0a154b51f8c83c24b2b9788371582f6adcb3bf (patch)
tree45a21391f03d8464d3307486389239571046b6e0
parent8b29f797012784dc8ad76031322a7e5f9c1fd21e (diff)
downloadorg.eclipse.linuxtools-5a0a154b51f8c83c24b2b9788371582f6adcb3bf.tar.gz
org.eclipse.linuxtools-5a0a154b51f8c83c24b2b9788371582f6adcb3bf.tar.xz
org.eclipse.linuxtools-5a0a154b51f8c83c24b2b9788371582f6adcb3bf.zip
Bug 508176 - "Tag Image" shell does not have a title
Added the title at the wizard level. Change-Id: I776f95499145580a8fb6e17bc29d9927e1f42291 Signed-off-by: Xavier Coulon <xcoulon@redhat.com> Reviewed-on: https://git.eclipse.org/r/85925 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
-rw-r--r--containers/org.eclipse.linuxtools.docker.ui/src/org/eclipse/linuxtools/internal/docker/ui/wizards/ImageTag.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.ui/src/org/eclipse/linuxtools/internal/docker/ui/wizards/ImageTag.java b/containers/org.eclipse.linuxtools.docker.ui/src/org/eclipse/linuxtools/internal/docker/ui/wizards/ImageTag.java
index f965582bfa..098667cce1 100644
--- a/containers/org.eclipse.linuxtools.docker.ui/src/org/eclipse/linuxtools/internal/docker/ui/wizards/ImageTag.java
+++ b/containers/org.eclipse.linuxtools.docker.ui/src/org/eclipse/linuxtools/internal/docker/ui/wizards/ImageTag.java
@@ -20,6 +20,7 @@ public class ImageTag extends Wizard {
public ImageTag(final String imageName) {
super();
+ setWindowTitle(WizardMessages.getString("ImageTag.title")); //$NON-NLS-1$
this.imageName = imageName;
}

Back to the top