From 1b982e04185e0a68efa4988889a6ee66fa2670d9 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 23 Mar 2011 02:49:06 +0000 Subject: [PATCH] Bug 339294 - Message Pattern should not be user-configurable. Patch by Alex Ruiz. --- .../cdt/codan/internal/ui/widgets/ParametersComposite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codan/org.eclipse.cdt.codan.ui/src/org/eclipse/cdt/codan/internal/ui/widgets/ParametersComposite.java b/codan/org.eclipse.cdt.codan.ui/src/org/eclipse/cdt/codan/internal/ui/widgets/ParametersComposite.java index 99b9a6ba1ef..4d22d3c1a1b 100644 --- a/codan/org.eclipse.cdt.codan.ui/src/org/eclipse/cdt/codan/internal/ui/widgets/ParametersComposite.java +++ b/codan/org.eclipse.cdt.codan.ui/src/org/eclipse/cdt/codan/internal/ui/widgets/ParametersComposite.java @@ -89,8 +89,8 @@ public class ParametersComposite extends Composite { /* * Here we are doing 2 things to make a text control "uneditable": * 1. 'setUneditable(false)' the problem with with just doing this is that - * the background of the text control doesn't change, and it looks like - * an editable one. This is confusing to the user. + * the background of the text control doesn't change, and it looks like + * an editable one. This is confusing to the user. * 2. Getting the background of a label control and applying it * to the "uneditable" text control. This way it is easier to figure out that * the contents of the text control cannot be changed.