Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] cdt-ui Property file syntax errors


There were a few syntax errors in the property files: /*...*/ for comment instead of #, and \! is an invalid escape sequence.
Thanks,
Tanya

Index: ChangeLog
===================================================================
retrieving revision 1.315
diff -u -r1.315 ChangeLog
--- ChangeLog	17 Mar 2004 15:42:41 -0000	1.315
+++ ChangeLog	17 Mar 2004 16:10:42 -0000
@@ -1,3 +1,9 @@
+2004-03-17 Tanya Wolff
+	Syntax errors in property files
+	* CBrowsingMessages.properties
+	* TypeHierarchyMessages.properties
+	* refactoring.properties
+	
 2004-03-16 Tanya Wolff
 	Externalized strings and marked non-translatable ones.
 
Index: browser/org/eclipse/cdt/internal/ui/browser/cbrowsing/CBrowsingMessages.properties
===================================================================
retrieving revision 1.1
diff -u -r1.1 CBrowsingMessages.properties
--- browser/org/eclipse/cdt/internal/ui/browser/cbrowsing/CBrowsingMessages.properties	16 Mar 2004 22:42:44 -0000	1.1
+++ browser/org/eclipse/cdt/internal/ui/browser/cbrowsing/CBrowsingMessages.properties	17 Mar 2004 16:10:42 -0000
@@ -1,14 +1,14 @@
-/*******************************************************************************
- * Copyright (c) 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials 
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- * 
- * Contributors:
- *     IBM Corporation - initial API and implementation
- *     QNX Software Systems - adapted for use in CDT
- *******************************************************************************/
+#******************************************************************************
+# Copyright (c) 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+#     QNX Software Systems - adapted for use in CDT
+#******************************************************************************/
 
 CBrowsingPart.toolTip= Working Set: {0}
 CBrowsingPart.toolTip2= {0} - Working Set: {1}
Index: browser/org/eclipse/cdt/internal/ui/browser/typehierarchy/TypeHierarchyMessages.properties
===================================================================
retrieving revision 1.1
diff -u -r1.1 TypeHierarchyMessages.properties
--- browser/org/eclipse/cdt/internal/ui/browser/typehierarchy/TypeHierarchyMessages.properties	16 Mar 2004 22:42:44 -0000	1.1
+++ browser/org/eclipse/cdt/internal/ui/browser/typehierarchy/TypeHierarchyMessages.properties	17 Mar 2004 16:10:42 -0000
@@ -1,14 +1,14 @@
-/*******************************************************************************
- * Copyright (c) 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials 
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- * 
- * Contributors:
- *     IBM Corporation - initial API and implementation
- *     QNX Software Systems - adapted for use in CDT
- *******************************************************************************/
+#*******************************************************************************
+# Copyright (c) 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+#     QNX Software Systems - adapted for use in CDT
+#*******************************************************************************/
 
 EnableMemberFilterAction.label=Members in Hierarchy
 EnableMemberFilterAction.tooltip=Lock View and Show Members in Hierarchy
Index: refactor/org/eclipse/cdt/internal/corext/refactoring/refactoring.properties
===================================================================
retrieving revision 1.2
diff -u -r1.2 refactoring.properties
--- refactor/org/eclipse/cdt/internal/corext/refactoring/refactoring.properties	11 Mar 2004 20:15:28 -0000	1.2
+++ refactor/org/eclipse/cdt/internal/corext/refactoring/refactoring.properties	17 Mar 2004 16:10:50 -0000
@@ -742,7 +742,7 @@
 IntroduceFactory.syntax_error=Introduce Factory cannot be performed due to syntax errors.
 IntroduceFactory.checking_preconditions=Checking preconditions for Introduce Factory...
 IntroduceFactory.examiningSelection=Examining selection...
-IntroduceFactory.notAConstructorInvocation=Selected entity is not a constructor invocation or definition\!
+IntroduceFactory.notAConstructorInvocation=Selected entity is not a constructor invocation or definition.
 #
 IntroduceFactory.noASTNodeForConstructorSearchHit=Can\'t find AST node for constructor search hit @ [''{0}'', ''{1}'']: <''{2}''> in translation unit ''{3}''
 IntroduceFactory.unexpectedInitializerNodeType=Unexpected AST node type for initializer when searching for constructor call: \'''{0}''\' in translation unit ''{1}''

Back to the top