Revision: 569
http://fclient.svn.sourceforge.net/fclient/?rev=569&view=rev
Author: jUrner
Date: 2008-07-09 01:38:38 -0700 (Wed, 09 Jul 2008)
Log Message:
-----------
'toUInt' was broken. fixed
Modified Paths:
--------------
trunk/fclient/src/fclient/lib/qt4ex/README
trunk/fclient/src/fclient/lib/qt4ex/settingsbase.py
Modified: trunk/fclient/src/fclient/lib/qt4ex/README
===================================================================
--- trunk/fclient/src/fclient/lib/qt4ex/README 2008-07-08 18:00:50 UTC (rev 568)
+++ trunk/fclient/src/fclient/lib/qt4ex/README 2008-07-09 08:38:38 UTC (rev 569)
@@ -4,10 +4,21 @@
Version history:
+
*******************************************************************
0.1.0
*******************************************************************
news:
+ x.
+
+bugfixes:
+ x. settingsbase/SettingsBase 'toUInt' did not work as expected. instead of an UInt a tuple(UInt, bool) was returned. fixed
+
+
+*******************************************************************
+0.1.0
+*******************************************************************
+news:
x. initial release
bugfixes:
Modified: trunk/fclient/src/fclient/lib/qt4ex/settingsbase.py
===================================================================
--- trunk/fclient/src/fclient/lib/qt4ex/settingsbase.py 2008-07-08 18:00:50 UTC (rev 568)
+++ trunk/fclient/src/fclient/lib/qt4ex/settingsbase.py 2008-07-09 08:38:38 UTC (rev 569)
@@ -163,7 +163,7 @@
value = getattr(v, settingsType)()
# TODO: more chekcs for valid types here
- if settingsType == 'toInt':
+ if settingsType in ('toInt', 'toUInt'):
value, ok = value
if not ok:
continue
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|