diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-02-01 22:07:08 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-02-01 22:07:08 +0000 |
commit | 3cb9b1adb3fee8cf8fbd4c3808433f9f26c52405 (patch) | |
tree | 2c0d5943e613eb8ffa524e06291bc9220512c9fb /fetchmailconf | |
parent | 621035704f4e6b2cb607f0dca46312abe54b0c54 (diff) | |
download | fetchmail-3cb9b1adb3fee8cf8fbd4c3808433f9f26c52405.tar.gz fetchmail-3cb9b1adb3fee8cf8fbd4c3808433f9f26c52405.tar.bz2 fetchmail-3cb9b1adb3fee8cf8fbd4c3808433f9f26c52405.zip |
2.2 compatibility.
svn path=/trunk/; revision=3572
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fetchmailconf b/fetchmailconf index f049a04c..427b3e5b 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -476,7 +476,7 @@ def helpwin(helpdict): scroll.pack(side=RIGHT, fill=BOTH) helpwin.textwidget.insert(END, helpdict['text']); Button(helpwin, text='Done', - command=lambda x=helpwin: Widget.destroy(x), bd=2).pack() + command=lambda x=helpwin: x.destroy(), bd=2).pack() textframe.pack(side=TOP) def make_icon_window(base, image): @@ -1025,7 +1025,7 @@ class ServerEdit(Frame, MyWidget): for username in self.subwidgets.keys(): self.subwidgets[username].destruct() del self.parent.subwidgets[self.server.pollname] - Widget.destroy(self.master) + self.master.destroy() def nosave(self): if ConfirmQuit(self, 'server option editing'): @@ -1464,7 +1464,7 @@ Fetchmail doesn't know anything special about this server type. Label(confwin, text=title).pack() Message(confwin, text=confirm, width=600).pack() Button(confwin, text='Done', - command=lambda x=confwin: Widget.destroy(x), bd=2).pack() + command=lambda x=confwin: x.destroy(), bd=2).pack() # # User editing stuff @@ -1539,7 +1539,7 @@ class UserEdit(Frame, MyWidget): # Yes, this test can fail -- if you delete the parent window. if self.parent.subwidgets.has_key(self.user.remote): del self.parent.subwidgets[self.user.remote] - Widget.destroy(self.master) + self.master.destroy() def nosave(self): if ConfirmQuit(self, 'user option editing'): @@ -1784,7 +1784,7 @@ class RunWindow(Frame): self.textwidget.see(END); def leave(self): - Widget.destroy(self.master) + self.master.destroy() # Here's where we choose either configuration or launching |