aboutsummaryrefslogtreecommitdiff
path: root/mesongui.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-09-29 18:20:56 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-09-29 18:20:56 +0300
commit6e6f0a34ec4bb03f62626b11adbf78ddf4b9e273 (patch)
tree1c25ad37ce602855ba4a15281b15efcc70c5d2e6 /mesongui.py
parent6a338a8247e137f13deaff2006c74943057c9f27 (diff)
downloadmeson-6e6f0a34ec4bb03f62626b11adbf78ddf4b9e273.zip
meson-6e6f0a34ec4bb03f62626b11adbf78ddf4b9e273.tar.gz
meson-6e6f0a34ec4bb03f62626b11adbf78ddf4b9e273.tar.bz2
Have the correct name in gui.
Diffstat (limited to 'mesongui.py')
-rwxr-xr-xmesongui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesongui.py b/mesongui.py
index b4ebc47..d322899 100755
--- a/mesongui.py
+++ b/mesongui.py
@@ -231,7 +231,7 @@ class OptionForm:
combo = QComboBox()
combo.addItem('plain')
combo.addItem('debug')
- combo.addItem('release')
+ combo.addItem('optimized')
combo.setCurrentText(self.coredata.buildtype)
combo.currentTextChanged.connect(self.build_type_changed)
self.form.addRow('Build type', combo)
@@ -243,7 +243,6 @@ class OptionForm:
self.form.addRow('Enable coverage', coverage)
def build_type_changed(self, newtype):
- print(newtype)
self.coredata.buildtype = newtype
def strip_changed(self, newState):