diff options
Diffstat (limited to 'grc/src/gui')
-rw-r--r-- | grc/src/gui/Dialogs.py | 4 | ||||
-rw-r--r-- | grc/src/gui/Messages.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/grc/src/gui/Dialogs.py b/grc/src/gui/Dialogs.py index 415a53c93..738109673 100644 --- a/grc/src/gui/Dialogs.py +++ b/grc/src/gui/Dialogs.py @@ -21,7 +21,7 @@ import pygtk pygtk.require('2.0') import gtk from Constants import MIN_DIALOG_WIDTH, MIN_DIALOG_HEIGHT -from .. platforms.base.Constants import VERSION +from .. platforms.base.Constants import PACKAGE, VERSION import Preferences class TextDisplay(gtk.TextView): @@ -85,8 +85,8 @@ class AboutDialog(gtk.AboutDialog): def __init__(self): """AboutDialog constructor.""" gtk.AboutDialog.__init__(self) + self.set_name(PACKAGE) self.set_version(VERSION) - self.set_name('GNU Radio Companion') self.set_license(__doc__) self.set_copyright(__doc__.strip().splitlines()[0]) self.set_website('http://gnuradio.org/trac/wiki/GNURadioCompanion') diff --git a/grc/src/gui/Messages.py b/grc/src/gui/Messages.py index 8f6a28048..fd925fefc 100644 --- a/grc/src/gui/Messages.py +++ b/grc/src/gui/Messages.py @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -from .. platforms.base.Constants import VERSION +from .. platforms.base.Constants import PACKAGE, VERSION import traceback import sys @@ -45,7 +45,7 @@ register_messenger(sys.stdout.write) # Special functions for specific program functionalities ########################################################################### def send_init(): - send("""<<< Welcome to GNU Radio Companion %s >>>\n"""%VERSION) + send("""<<< Welcome to %s %s >>>\n"""%(PACKAGE, VERSION)) def send_page_switch(file_path): send('\nShowing: "%s"\n'%file_path) |