SVN commit 453325 by hadacek: - fix bug #100163 (log file loading) - adjust version and changelog M +7 -1 CHANGELOG M +2 -2 status.cpp M +3 -3 version.h --- branches/KDE/3.5/kdegames/kmines/CHANGELOG #453324:453325 @@ -1,4 +1,10 @@ -2.1.9 (27 Jun 2004) [KDE 3.3 devel] +2.1.10 (25 Aug 2005) [KDE 3.5 devel] + +2.1.9a (25 Aug 2005) [KDE 3.4.3 stable] + * fix constness in solver [reported by ] + * fix bug: cannot load log [reported by Tobias Meyer] + +2.1.9 (27 Jun 2004) [KDE 3.3 stable] * fix compilation of solver debugging code. * add missing events * replace case size option by zoom in/zoom out actions --- branches/KDE/3.5/kdegames/kmines/status.cpp #453324:453325 @@ -421,9 +421,9 @@ QDomElement a = actions.item(i).toElement(); if ( a.isNull() ) return false; uint i0 = a.attribute("line").toUInt(&ok); - if ( !ok || i0>=w ) return false; + if ( !ok || i0>=h ) return false; uint j = a.attribute("column").toUInt(&ok); - if ( !ok || j>=h ) return false; + if ( !ok || j>=w ) return false; QString type = a.attribute("type"); uint k = 0; for (; k