Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.ide.ui/src/org/eclipse/emf/compare/ide/ui/internal/structuremergeviewer/ProblemIndicationComposite.java')
-rw-r--r--plugins/org.eclipse.emf.compare.ide.ui/src/org/eclipse/emf/compare/ide/ui/internal/structuremergeviewer/ProblemIndicationComposite.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.compare.ide.ui/src/org/eclipse/emf/compare/ide/ui/internal/structuremergeviewer/ProblemIndicationComposite.java b/plugins/org.eclipse.emf.compare.ide.ui/src/org/eclipse/emf/compare/ide/ui/internal/structuremergeviewer/ProblemIndicationComposite.java
index a569cb1e3..823bff17c 100644
--- a/plugins/org.eclipse.emf.compare.ide.ui/src/org/eclipse/emf/compare/ide/ui/internal/structuremergeviewer/ProblemIndicationComposite.java
+++ b/plugins/org.eclipse.emf.compare.ide.ui/src/org/eclipse/emf/compare/ide/ui/internal/structuremergeviewer/ProblemIndicationComposite.java
@@ -37,7 +37,7 @@ public class ProblemIndicationComposite extends Composite {
if (rootDiagnostic.getSeverity() == Diagnostic.OK) {
return EMFCompareIDEUIMessages.getString("_UI_NoProblems_message"); //$NON-NLS-1$
} else if (rootDiagnostic.getSeverity() == Diagnostic.CANCEL) {
- return EMFCompareIDEUIMessages.getString("_UI_Cancel_message"); //$NON-NLS-1$
+ return EMFCompareIDEUIMessages.getString("_UI_Cancel_message"); //$NON-NLS-1$
} else {
return EMFCompareIDEUIMessages.getString("_UI_DefaultProblem_message"); //$NON-NLS-1$
}
@@ -114,8 +114,8 @@ public class ProblemIndicationComposite extends Composite {
if (image != null) {
image.setBackground(imageLabel.getBackground());
imageLabel.setImage(image);
- imageLabel.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_CENTER
- | GridData.VERTICAL_ALIGN_BEGINNING));
+ imageLabel.setLayoutData(
+ new GridData(GridData.HORIZONTAL_ALIGN_CENTER | GridData.VERTICAL_ALIGN_BEGINNING));
}
messageText.setText(getMessage());

Back to the top