comparison frontends/src/primitivus/profile_manager.py @ 1324:948dc273ad93 frontends_multi_profiles

quick_frontend, primitivus: fixes typo between method alert and class Alert
author souliane <souliane@mailoo.org>
date Sat, 21 Feb 2015 12:34:48 +0100
parents 7cf32aeeebdb
children 069ad98b360d
comparison
equal deleted inserted replaced
1323:a599b6a70dc0 1324:948dc273ad93
151 self.pass_wid.set_edit_text(password) 151 self.pass_wid.set_edit_text(password)
152 self.current.password = password 152 self.current.password = password
153 self.host.redraw() 153 self.host.redraw()
154 154
155 def alert(self, title, message): 155 def alert(self, title, message):
156 popup = sat_widgets.alert(title, message, ok_cb=self.host.removePopUp) 156 popup = sat_widgets.Alert(title, message, ok_cb=self.host.removePopUp)
157 self.host.showPopUp(popup) 157 self.host.showPopUp(popup)
158 158
159 def onProfileChange(self, list_wid): 159 def onProfileChange(self, list_wid):
160 """This is called when a profile is selected in the profile list. 160 """This is called when a profile is selected in the profile list.
161 161