[Uml-devel] branches/KDE/3.5/kdesdk/umbrello/umbrello
Oliver Kellogg
okellogg at users.sourceforge.net
Mon May 15 22:33:15 UTC 2006
SVN commit 541374 by okellogg:
parseStmt(): Skip normal annotations too.
CCBUG:127160
M +3 -1 javaimport.cpp
--- branches/KDE/3.5/kdesdk/umbrello/umbrello/javaimport.cpp #541373:541374
@@ -261,8 +261,10 @@
}
if (keyword == "@") { // annotation
advance();
- if (m_source[m_srcIndex] == "(")
+ if (m_source[m_srcIndex + 1] == "(") {
+ advance();
skipToClosing('(');
+ }
return true;
}
if (keyword == "}") {
More information about the umbrello-devel
mailing list