ソースを参照

wxGUI: define title for 'about window'

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@50016 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 13 年 前
コミット
64830f52e9
1 ファイル変更1 行追加1 行削除
  1. 1 1
      gui/wxpython/gui_core/ghelp.py

+ 1 - 1
gui/wxpython/gui_core/ghelp.py

@@ -382,7 +382,7 @@ class AboutWindow(wx.Frame):
     """
     def __init__(self, parent, size = (750, 400), 
                  title = _('About GRASS GIS'), **kwargs):
-        wx.Frame.__init__(self, parent = parent, id = wx.ID_ANY, size = size, **kwargs)
+        wx.Frame.__init__(self, parent = parent, id = wx.ID_ANY, title = title, size = size, **kwargs)
         
         panel = wx.Panel(parent = self, id = wx.ID_ANY)