[Uml-devel] branches/KDE/3.5/kdesdk/umbrello/umbrello

Oliver Kellogg okellogg at users.sourceforge.net
Thu Aug 11 06:45:07 UTC 2005


SVN commit 445642 by okellogg:

CCBUG:79648 - Add AdaImport. Still work in progress.


 M  +1 -0      Makefile.am  
 A             adaimport.cpp   [License: GPL (v2+)]
 A             adaimport.h   [License: GPL (v2+)]
 M  +2 -1      uml.cpp  


--- branches/KDE/3.5/kdesdk/umbrello/umbrello/Makefile.am #445641:445642
@@ -4,6 +4,7 @@
 umbrello_SOURCES = activitywidget.cpp \
 actor.cpp \
 actorwidget.cpp \
+adaimport.cpp \
 aligntoolbar.cpp \
 artifact.cpp \
 artifactwidget.cpp \
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/uml.cpp #445641:445642
@@ -50,6 +50,7 @@
 #include "infowidget.h"
 #include "cppimport.h"
 #include "idlimport.h"
+#include "adaimport.h"
 #include "docwindow.h"
 #include "codegenerator.h"
 #include "generatorinfo.h"
@@ -1415,7 +1416,7 @@
     if (firstFile.endsWith(".idl"))
         classImporter = new IDLImport();
     else if (firstFile.contains( QRegExp("\\.ad[sba]$") ))
-        /* classImporter = new AdaImport(); */;
+        classImporter = new AdaImport();
     else
         classImporter = new CppImport();  // the default.
     classImporter->importFiles(fileList);




More information about the umbrello-devel mailing list