Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-03-24 15:30:44 +0000
committerMichael Valenta2005-03-24 15:30:44 +0000
commitf002577dafbf587da8d2aac000eb07781ff5cea0 (patch)
treebd0c66f8ddef33f5afe5d868d5818296336d1e44
parentb47e89e0ec9d8d451d8667ecce8cd942f8a8c451 (diff)
downloadeclipse.platform.team-f002577dafbf587da8d2aac000eb07781ff5cea0.tar.gz
eclipse.platform.team-f002577dafbf587da8d2aac000eb07781ff5cea0.tar.xz
eclipse.platform.team-f002577dafbf587da8d2aac000eb07781ff5cea0.zip
Adjust to move of PreferenceLinkArea
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties4
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/SWTUtils.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
index a4352c574..240dec0ad 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/messages.properties
@@ -162,7 +162,7 @@ CVSDecoratorPreferencesPage.16=C&ompute deep outgoing state for folders
CVSDecoratorPreferencesPage.17=Disabling this will improve decorator performance.
CVSDecoratorPreferencesPage.18=Enable &font and color decorations
CVSDecoratorPreferencesPage.19=org.eclipse.ui.preferencePages.ColorsAndFonts
-CVSDecoratorPreferencesPage.20=See ''{0}'' to configure the font and color decorations.
+CVSDecoratorPreferencesPage.20=See <a>''{0}''</a> to configure the font and color decorations.
CVSDecoratorPreferencesPage.21=&General
CVSDecoratorPreferencesPage.22=name of the resource being decorated
CVSDecoratorPreferencesPage.23=the tag applied to the resource
@@ -1288,7 +1288,7 @@ ComparePreferencePage.1=Show the &file author in compare editors
ComparePreferencePage.2=Automatically enable co&mmit set grouping in CVS synchronizations
ComparePreferencePage.3=Show revision &comparisons in a dialog
ComparePreferencePage.4=Con&sider file contents in comparisons
-ComparePreferencePage.6=See ''{0}'' for compare editor preferences.
+ComparePreferencePage.6=See <a>''{0}''</a> for compare editor preferences.
FileModificationValidator.3=Perform Edit?
FileModificationValidator.4=A CVS edit notification is required to be sent to the server in order to allow editing of one or more selected files. Continue?
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/SWTUtils.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/SWTUtils.java
index 1c126fcf4..67faaccfa 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/SWTUtils.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/SWTUtils.java
@@ -37,7 +37,7 @@ public class SWTUtils {
}
public static PreferenceLinkArea createPreferenceLink(IWorkbenchPreferenceContainer container, Composite parent, String pageId, String text, int span) {
- final PreferenceLinkArea area = new PreferenceLinkArea(parent, SWT.BORDER, pageId, text, container, null);
+ final PreferenceLinkArea area = new PreferenceLinkArea(parent, SWT.NONE, pageId, text, container, null);
area.getControl().setLayoutData(createHFillGridData(span));
return area;
}

Back to the top