[Uml-devel] [Bug 116107] There should be a possability to create case sensitive source code files for PHP 4/5.

Oliver Kellogg okellogg at users.sourceforge.net
Sun Nov 27 20:32:02 UTC 2005


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=116107         




------- Additional Comments From okellogg users sourceforge net  2005-11-28 05:30 -------
SVN commit 483760 by okellogg:

findFileName(): As an intermediate workaround, don't lower case the
 name if the currently active language is case sensitive.
CCBUG:116107


 M  +2 -1      simplecodegenerator.cpp  


--- branches/KDE/3.5/kdesdk/umbrello/umbrello/codegenerators/simplecodegenerator.cpp #483759:483760
 @ -37,6 +37,7  @
 #include "../codedocument.h"
 #include "../operation.h"
 #include "../umldoc.h"
+#include "../uml.h"
 
 // Constructors/Destructors
 //
 @ -102,7 +103,7  @
         name = concept->getFullyQualifiedName("-");
     }
 
-    if (ext != ".idl" && ext != ".java" && ext != ".pm" && ext != ".py") {
+    if (! UMLApp::app()->activeLanguageIsCaseSensitive()) {
         package = package.lower();
         name = name.lower();
     }




More information about the umbrello-devel mailing list