[Uml-devel] KDE/kdesdk/umbrello

Oliver Kellogg okellogg at users.sourceforge.net
Tue May 22 19:50:58 UTC 2012


SVN commit 1296156 by okellogg:

MySQLWriter::printCheckConstraints():
Write missing m_endl to QTextStream before calling base method.

BUG:275164


 M  +2 -0      ChangeLog  
 M  +1 -0      umbrello/codegenerators/sql/mysqlwriter.cpp  


--- trunk/KDE/kdesdk/umbrello/ChangeLog #1296155:1296156
@@ -2,6 +2,8 @@
 
 * New feature: Drawing of state diagrams with more pseudostates possible.
 * Cannot anchor note in state diagram (270597)
+* Missing newline in MySQL codegenerator results in output being partially
+  commented out on some models (275164)
 * Color of role text on diagram (e.g. Role B) nearly invisible (291401)
 * Junk residual UMLAssociations saved to XMI (293042)
 * Problems with widget moving/resizing in state diagrams (295605)
--- trunk/KDE/kdesdk/umbrello/umbrello/codegenerators/sql/mysqlwriter.cpp #1296155:1296156
@@ -161,6 +161,7 @@
     sql<<"-- CHECK Constraints are not supported in Mysql ( as of version 5.x )";
     sql<<m_endl;
     sql<<"-- But it'll parse the statements without error ";
+    sql<<m_endl;
 
     // call base class
     SQLWriter::printCheckConstraints( sql, constrList );




More information about the umbrello-devel mailing list