3271: Verify tool glade file needs to have elements renamed
svn: r14628
This commit is contained in:
parent
01f264fa8b
commit
4ff82a7581
@ -419,6 +419,8 @@ class VerifyResults(ManagedWindow):
|
|||||||
|
|
||||||
self.top.connect_signals({
|
self.top.connect_signals({
|
||||||
"destroy_passed_object" : self.close,
|
"destroy_passed_object" : self.close,
|
||||||
|
"on_verify_ok_clicked" : self.__dummy,
|
||||||
|
"on_help_clicked" : self.__dummy,
|
||||||
})
|
})
|
||||||
|
|
||||||
self.warn_tree = self.top.get_object('warn_tree')
|
self.warn_tree = self.top.get_object('warn_tree')
|
||||||
@ -492,6 +494,12 @@ class VerifyResults(ManagedWindow):
|
|||||||
self.window.show()
|
self.window.show()
|
||||||
self.window_shown = False
|
self.window_shown = False
|
||||||
|
|
||||||
|
def __dummy(self, obj):
|
||||||
|
"""dummy callback, needed because VerifyResults is in same glade file
|
||||||
|
as Verify, so callbacks of Verify must be defined.
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
|
||||||
def load_ignored(self,db_filename):
|
def load_ignored(self,db_filename):
|
||||||
md5sum = md5(db_filename)
|
md5sum = md5(db_filename)
|
||||||
self.ignores_filename = os.path.join(
|
self.ignores_filename = os.path.join(
|
||||||
|
@ -7,9 +7,11 @@
|
|||||||
<child internal-child="vbox">
|
<child internal-child="vbox">
|
||||||
<object class="GtkVBox" id="dialog-vbox1">
|
<object class="GtkVBox" id="dialog-vbox1">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkVBox" id="vbox6">
|
<object class="GtkVBox" id="vbox6">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkLabel" id="title">
|
<object class="GtkLabel" id="title">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
@ -701,10 +703,12 @@
|
|||||||
<child internal-child="vbox">
|
<child internal-child="vbox">
|
||||||
<object class="GtkVBox" id="dialog-vbox2">
|
<object class="GtkVBox" id="dialog-vbox2">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkVBox" id="vbox5">
|
<object class="GtkVBox" id="vbox5">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="border_width">6</property>
|
<property name="border_width">6</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
<property name="spacing">6</property>
|
<property name="spacing">6</property>
|
||||||
<child>
|
<child>
|
||||||
<object class="GtkLabel" id="title2">
|
<object class="GtkLabel" id="title2">
|
||||||
@ -741,6 +745,7 @@
|
|||||||
<child>
|
<child>
|
||||||
<object class="GtkVBox" id="vbox7">
|
<object class="GtkVBox" id="vbox7">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
<property name="spacing">6</property>
|
<property name="spacing">6</property>
|
||||||
<child>
|
<child>
|
||||||
<placeholder/>
|
<placeholder/>
|
||||||
|
Loading…
Reference in New Issue
Block a user