2006-05-10 Alex Roitman <shura@gramps-project.org>

* src/plugins/SoundGen.py: Fix WM.



svn: r6613
This commit is contained in:
Alex Roitman 2006-05-10 23:48:21 +00:00
parent 2ddedb80a3
commit f3889a89dd
2 changed files with 3 additions and 8 deletions

View File

@ -1,3 +1,6 @@
2006-05-10 Alex Roitman <shura@gramps-project.org>
* src/plugins/SoundGen.py: Fix WM.
2006-05-10 Don Allingham <don@gramps-project.org>
* src/DataViews/_PersonView.py: support for inverted searchs
* src/PeopleModel.py: support for inverted searchs

View File

@ -43,7 +43,6 @@ import gtk.glade
#
#------------------------------------------------------------------------
import soundex
import Utils
import GrampsDisplay
import ManagedWindow
import AutoComp
@ -68,7 +67,6 @@ class SoundGen(Tool.Tool, ManagedWindow.ManagedWindow):
self.glade.signal_autoconnect({
"destroy_passed_object" : self.close,
"on_help_clicked" : self.on_help_clicked,
"on_delete_event" : self.on_delete_event,
})
window = self.glade.get_widget("soundEx")
@ -108,12 +106,6 @@ class SoundGen(Tool.Tool, ManagedWindow.ManagedWindow):
"""Display the relevant portion of GRAMPS manual"""
GrampsDisplay.help('tools-util-other')
def on_delete_event(self,obj,b):
pass
def close(self,obj):
self.window.destroy()
def build_menu_names(self, obj):
return (self.label,None)