Temporary workaround for resolve the automatic check of codelite
[bertos.git] / wizard / BOutputPage.py
index aea68aaf9fa789ae79a0e5023f25fe4a93cccb4e..0720e7a227756c51029d07cba97a803f8ad06f53 100644 (file)
@@ -4,7 +4,7 @@
 # Copyright 2009 Develer S.r.l. (http://www.develer.com/)
 # All rights reserved.
 #
-# $Id:$
+# $Id$
 #
 # Author: Lorenzo Berni <duplo@develer.com>
 #
@@ -26,7 +26,7 @@ class BOutputPage(BWizardPage):
         BWizardPage.__init__(self, UI_LOCATION + "/output_select.ui")
         self.setTitle(self.tr("Choose the project output"))
         self.connectSignals()
-        self.setProjectInfo("OUTPUT", [])
+        self.setProjectInfo("OUTPUT", ["codelite"])
     
     ## Overloaded BWizardPage connectSignals method. ##
     
@@ -34,8 +34,6 @@ class BOutputPage(BWizardPage):
         """
         Connects the signals with the related slots.
         """
-        self.connect(self.pageContent.eclipseCheckBox, SIGNAL("stateChanged(int)"), lambda checked: self.modeChecked(checked, "eclipse"))
-        self.connect(self.pageContent.xcodeCheckBox, SIGNAL("stateChanged(int)"), lambda checked: self.modeChecked(checked, "xcode"))
         self.connect(self.pageContent.codeliteCheckBox, SIGNAL("stateChanged(int)"), lambda checked: self.modeChecked(checked, "codelite"))
     
     ####