Summary: | JJ: Javascript Code Generation creates bad format methods (operations) | ||
---|---|---|---|
Product: | [Applications] umbrello | Reporter: | ediaz666 <ediaz666> |
Component: | general | Assignee: | Umbrello Development Group <umbrello-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | patch for bug #135540 |
Description
ediaz666@gmail.com
2006-10-12 22:18:56 UTC
Another Junior Job candidate. Created attachment 19624 [details] patch for bug #135540 Hello, the bug was in file codegenerators/jswriter.cpp This was indeed a junior job. Have a nice day SVN commit 632848 by okellogg: writeOperations(): Aply attachment 19624 [details] from Antoine Dopffer. Thanks Antoine for contributing. BUG:135540 M +4 -0 ChangeLog M +1 -1 umbrello/codegenerators/jswriter.cpp --- branches/KDE/3.5/kdesdk/umbrello/ChangeLog #632847:632848 @@ -1,3 +1,7 @@ +Version 1.5.7 +* Bugs fixed from http://bugs.kde.org: +* Javascript Code Generation creates bad format methods (135540) + Version 1.5.61 * Copy/paste of attribute or operation in list view within same class --- branches/KDE/3.5/kdesdk/umbrello/umbrello/codegenerators/jswriter.cpp #632847:632848 @@ -223,7 +223,7 @@ js << " */" << m_endl; }//end if : write method documentation - js << classname << ".prototype." << cleanName(op->getName()) << " function " << "("; + js << classname << ".prototype." << cleanName(op->getName()) << " = function " << "("; int i = atl.count(); int j=0; |