Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJohn Camelon2003-09-11 14:58:30 +0000
committerJohn Camelon2003-09-11 14:58:30 +0000
commit32f2565b5046f200bead1f66900cefb84cbb7f29 (patch)
tree3bd0c4898919a1432469a3e989750d2f340cfccb /core
parent64911fc1866b9c6b6e225e0b5a4a474e69208f7c (diff)
downloadorg.eclipse.cdt-32f2565b5046f200bead1f66900cefb84cbb7f29.tar.gz
org.eclipse.cdt-32f2565b5046f200bead1f66900cefb84cbb7f29.tar.xz
org.eclipse.cdt-32f2565b5046f200bead1f66900cefb84cbb7f29.zip
Patch for Hoda Amer
- Removed any reference to jdt.ineternal package for property files in TextManipulationMessages and CUIMessages - Added a CUIMessages.properties file to org.eclipse.cdt.internal.ui
Diffstat (limited to 'core')
-rw-r--r--core/org.eclipse.cdt.ui/ChangeLog5
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/textmanipulation/TextManipulationMessages.java2
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.java2
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.properties12
4 files changed, 19 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui/ChangeLog b/core/org.eclipse.cdt.ui/ChangeLog
index 3e7fa4b779e..f59f0e0a66d 100644
--- a/core/org.eclipse.cdt.ui/ChangeLog
+++ b/core/org.eclipse.cdt.ui/ChangeLog
@@ -6,6 +6,11 @@
Used the managed build info to get the current config for the target.
* build/org/eclipse/cdt/ui/build/properties/BuildPropertyPage.java
+2003-09-11 Hoda Amer
+ - Removed any reference to jdt.ineternal package for propertiy files
+ in TextManipulationMessages and CUIMessages
+ - Added a CUIMessages.properties file to org.eclipse.cdt.internal.ui
+
2003-09-08 Bogdan Gheorghe
- Changed search pop up menu in CEditor and CContentOutlinePage
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/textmanipulation/TextManipulationMessages.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/textmanipulation/TextManipulationMessages.java
index 989fdd9e650..d39190172bd 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/textmanipulation/TextManipulationMessages.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/corext/textmanipulation/TextManipulationMessages.java
@@ -17,7 +17,7 @@ import java.util.ResourceBundle;
public class TextManipulationMessages {
- private static final String BUNDLE_NAME= "org.eclipse.jdt.internal.corext.textmanipulation.Messages"; //$NON-NLS-1$
+ private static final String BUNDLE_NAME= "org.eclipse.cdt.internal.corext.textmanipulation.Messages"; //$NON-NLS-1$
private static final ResourceBundle RESOURCE_BUNDLE= ResourceBundle.getBundle(BUNDLE_NAME);
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.java
index 29131742b02..e2342b05d81 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.java
@@ -16,7 +16,7 @@ import java.util.ResourceBundle;
public class CUIMessages {
- private static final String RESOURCE_BUNDLE= "org.eclipse.jdt.internal.ui.JavaUIMessages";//$NON-NLS-1$
+ private static final String RESOURCE_BUNDLE= "org.eclipse.cdt.internal.ui.CUIMessages";//$NON-NLS-1$
private static ResourceBundle fgResourceBundle= ResourceBundle.getBundle(RESOURCE_BUNDLE);
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.properties b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.properties
new file mode 100644
index 00000000000..814d9ececdf
--- /dev/null
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CUIMessages.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2002,2003 Rational Software Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v0.5
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v05.html
+#
+# Contributors:
+# Rational Software - Initial API and implementation
+###############################################################################
+
+ExceptionDialog.seeErrorLogMessage= See error log for more details. \ No newline at end of file

Back to the top