diff --git a/core/org.eclipse.cdt.ui/plugin.xml b/core/org.eclipse.cdt.ui/plugin.xml
index ba3afabb707..f360c8e4493 100644
--- a/core/org.eclipse.cdt.ui/plugin.xml
+++ b/core/org.eclipse.cdt.ui/plugin.xml
@@ -1341,7 +1341,8 @@
id="org.eclipse.cdt.ui.text.templates.c">
+ file="templates/default-templates.xml"
+ translations="$nl$/templates/default-templates.properties">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-]>
-
for (${var} = 0; ${var} < ${max}; ++${var}) {
${cursor}
}
-for (int ${var} = 0; ${var} < ${max}; ++${var}) {
+for (int ${var} = 0; ${var} < ${max}; ++${var}) {
${cursor}
}
-do {
+do {
${cursor}
} while (${condition});
-switch (${key}) {
+switch (${key}) {
case ${value}:
${cursor}
break;
@@ -49,49 +38,49 @@ All Rights Reserved.
break;
}
-if (${condition}) {
+if (${condition}) {
${cursor}
}
-if (${condition}) {
+if (${condition}) {
${cursor}
} else {
}
-else if (${condition}) {
+else if (${condition}) {
${cursor}
}
-else {
+else {
${cursor}
}
-try {
+try {
${cursor}
} catch (${Exception} e) {
}
-catch (${Exception} e) {
+catch (${Exception} e) {
${cursor}
}
-int main(int argc, char **argv) {
+int main(int argc, char **argv) {
${cursor}
}
-class ${name} {
+class ${name} {
${cursor}
private:
};
-using namespace ${namespace};
+using namespace ${namespace};
-namespace ${namespace} {
+namespace ${namespace} {
${cursor}
}
-${type} ${name} = new ${type}(${arguments});
-