2006-05-10 Alex Roitman <shura@gramps-project.org>
* src/plugins/SoundGen.py: Fix WM. svn: r6613
This commit is contained in:
		@@ -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>
 | 
					2006-05-10  Don Allingham  <don@gramps-project.org>
 | 
				
			||||||
	* src/DataViews/_PersonView.py: support for inverted searchs
 | 
						* src/DataViews/_PersonView.py: support for inverted searchs
 | 
				
			||||||
	* src/PeopleModel.py: support for inverted searchs
 | 
						* src/PeopleModel.py: support for inverted searchs
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -43,7 +43,6 @@ import gtk.glade
 | 
				
			|||||||
#
 | 
					#
 | 
				
			||||||
#------------------------------------------------------------------------
 | 
					#------------------------------------------------------------------------
 | 
				
			||||||
import soundex
 | 
					import soundex
 | 
				
			||||||
import Utils
 | 
					 | 
				
			||||||
import GrampsDisplay
 | 
					import GrampsDisplay
 | 
				
			||||||
import ManagedWindow
 | 
					import ManagedWindow
 | 
				
			||||||
import AutoComp
 | 
					import AutoComp
 | 
				
			||||||
@@ -68,7 +67,6 @@ class SoundGen(Tool.Tool, ManagedWindow.ManagedWindow):
 | 
				
			|||||||
        self.glade.signal_autoconnect({
 | 
					        self.glade.signal_autoconnect({
 | 
				
			||||||
            "destroy_passed_object" : self.close,
 | 
					            "destroy_passed_object" : self.close,
 | 
				
			||||||
            "on_help_clicked"       : self.on_help_clicked,
 | 
					            "on_help_clicked"       : self.on_help_clicked,
 | 
				
			||||||
            "on_delete_event"       : self.on_delete_event,
 | 
					 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        window = self.glade.get_widget("soundEx")
 | 
					        window = self.glade.get_widget("soundEx")
 | 
				
			||||||
@@ -108,12 +106,6 @@ class SoundGen(Tool.Tool, ManagedWindow.ManagedWindow):
 | 
				
			|||||||
        """Display the relevant portion of GRAMPS manual"""
 | 
					        """Display the relevant portion of GRAMPS manual"""
 | 
				
			||||||
        GrampsDisplay.help('tools-util-other')
 | 
					        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):
 | 
					    def build_menu_names(self, obj):
 | 
				
			||||||
        return (self.label,None)
 | 
					        return (self.label,None)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user