X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBStartPage.py;h=2d633f8058812f2b01adc35c17c61a114f1bd738;hb=c27023641680161cd31e7dfe9c7420e7a7abeb83;hp=8a2a15dc2024a331479ce21a8ba0a025b4a77edb;hpb=f3c5a7fbce17712e088c3d9f9719e42d8ba7fff3;p=bertos.git diff --git a/wizard/BStartPage.py b/wizard/BStartPage.py index 8a2a15dc..2d633f80 100644 --- a/wizard/BStartPage.py +++ b/wizard/BStartPage.py @@ -1,8 +1,32 @@ #!/usr/bin/env python # encoding: utf-8 # +# This file is part of BeRTOS. +# +# Bertos is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# +# As a special exception, you may use this file as part of a free software +# library without restriction. Specifically, if other files instantiate +# templates or use macros or inline functions from this file, or you compile +# this file and link it with other files to produce an executable, this +# file does not by itself cause the resulting executable to be covered by +# the GNU General Public License. This exception does not however +# invalidate any other reasons why the executable file might be covered by +# the GNU General Public License. +# # Copyright 2008 Develer S.r.l. (http://www.develer.com/) -# All rights reserved. # # $Id$ # @@ -14,7 +38,6 @@ from PyQt4.QtGui import * import PyQt4.uic as uic from const import * -from version import wizard_version class BStartPage(QDialog): @@ -22,7 +45,7 @@ class BStartPage(QDialog): QDialog.__init__(self) self.setupUi() self.connectSignals() - self.setWindowTitle(self.tr("Create or edit a BeRTOS project - rev.%1").arg(wizard_version)) + self.setWindowTitle(self.tr("Create or edit a BeRTOS project")) self.initializeButtons() def setupUi(self):