Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnsgar Radermacher2013-11-19 15:27:34 +0000
committerAnsgar Radermacher2013-11-19 15:29:50 +0000
commit0816eab58de60bf6fae5c7870f8ec5a5c0863543 (patch)
tree9deb5b241a9f9376360dac28fc4af9d5b4742ea4 /extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen
parent6996e2ac43ba83468405783b2e111858ff5bb207 (diff)
downloadorg.eclipse.papyrus-0816eab58de60bf6fae5c7870f8ec5a5c0863543.tar.gz
org.eclipse.papyrus-0816eab58de60bf6fae5c7870f8ec5a5c0863543.tar.xz
org.eclipse.papyrus-0816eab58de60bf6fae5c7870f8ec5a5c0863543.zip
- [Bug 420372] Cannot generate C++ code from new Papyrus model: amended: apply C nature before C++ nature
Diffstat (limited to 'extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen')
-rw-r--r--extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen/utils/LocateCppProject.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen/utils/LocateCppProject.java b/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen/utils/LocateCppProject.java
index f44a38875ff..2bcb3f1856a 100644
--- a/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen/utils/LocateCppProject.java
+++ b/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/src/org/eclipse/papyrus/cpp/codegen/utils/LocateCppProject.java
@@ -54,6 +54,7 @@ public class LocateCppProject {
if (!apply) {
return null;
}
+ CCProjectNature.addCNature(modelProject, null);
CCProjectNature.addCCNature(modelProject, null);
}
}

Back to the top