SF.net SVN: fclient: [612] trunk/fclient/src/fclient/lib/qt4ex/lib/settings .py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-07-13 14:14:43
|
Revision: 612
http://fclient.svn.sourceforge.net/fclient/?rev=612&view=rev
Author: jUrner
Date: 2008-07-13 07:14:48 -0700 (Sun, 13 Jul 2008)
Log Message:
-----------
adapt to Qt4Ex changes
Modified Paths:
--------------
trunk/fclient/src/fclient/lib/qt4ex/lib/settings.py
Modified: trunk/fclient/src/fclient/lib/qt4ex/lib/settings.py
===================================================================
--- trunk/fclient/src/fclient/lib/qt4ex/lib/settings.py 2008-07-13 14:14:12 UTC (rev 611)
+++ trunk/fclient/src/fclient/lib/qt4ex/lib/settings.py 2008-07-13 14:14:48 UTC (rev 612)
@@ -177,7 +177,7 @@
mthd = getattr(v, 'to' + typeSetting, None)
if mthd is None:
raise ValueError('%s: no conversion method found for type: %r' % (name, typeSetting))
- obj, ok = qtools.castVariant(v, typeSetting)
+ obj, ok = tools.castVariant(v, typeSetting)
else:
obj, ok = getattr(self, 'to' + typeSetting)(settings, name, v)
self._settingsDict[name].value = obj if ok else self.default(name)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|