1 Oct 2008 12:11
KDE/kdesdk/umbrello/umbrello
Andi Fischer <andi.fischer <at> hispeed.ch>
2008-10-01 10:11:37 GMT
2008-10-01 10:11:37 GMT
SVN commit 866559 by fischer:
Krazy: fixing postfix usage of ++ and --.
M +5 -4 association.cpp
M +2 -2 import_rose.cpp
M +6 -6 petaltree2uml.cpp
M +3 -3 umlviewimageexportermodel.cpp
--- trunk/KDE/kdesdk/umbrello/umbrello/association.cpp #866558:866559
<at> <at> -226,7 +226,7 <at> <at>
m_AssocType == Uml::at_Child2Category ||
m_AssocType == Uml::at_Category2Parent
) {
- for (unsigned r = Uml::A; r <= Uml::B; r++) {
+ for (unsigned r = Uml::A; r <= Uml::B; ++r) {
const QString fetch = (m_AssocType == Uml::at_Generalization ?
r == Uml::A ? "child" : "parent"
: r == Uml::A ? "client" : "supplier");
<at> <at> -404,7 +404,7 <at> <at>
};
unsigned index;
- for (index = 0; index < nAssocTypes; index++)
+ for (index = 0; index < nAssocTypes; ++index)
if (assocTypeStr == assocTypeString[index])
break;
if (index < nAssocTypes)
<at> <at> -499,10 +499,11 <at> <at>
}
(Continue reading)
RSS Feed