wizard: do not auto-detect number base for integer parameters
authorarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 13 Oct 2010 11:11:11 +0000 (11:11 +0000)
committerarighi <arighi@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 13 Oct 2010 11:11:11 +0000 (11:11 +0000)
The spinbox for int, long or unsigned long parameter must only support
base-10 integers.

git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4425 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BModulePage.py

index f1eaad6794f0fe54b54859d1df5816a3785d1f32..b03fca6657428197f03949833662834ef9f77259 100644 (file)
@@ -340,7 +340,7 @@ class BModulePage(BWizardPage):
             maximum = int(informations["max"])
         spin_box.setRange(minimum, maximum)
         spin_box.setSuffix(suff)
-        spin_box.setValue(int(value.replace("L", "").replace("U", ""), 0))
+        spin_box.setValue(int(value.replace("L", "").replace("U", "")))
         self._control_group.addControl(index, spin_box)