comparison sat_frontends/jp/xmlui_manager.py @ 2765:378188abe941

misc: replaced all "dummy" by the more conventional and readable "__" ("_" being used for gettext)
author Goffi <goffi@goffi.org>
date Fri, 11 Jan 2019 11:13:15 +0100
parents e8dc00f612fb
children 003b8b4b56a7
comparison
equal deleted inserted replaced
2764:92af49cde255 2765:378188abe941
531 class XMLUIDialog(xmlui_base.XMLUIDialog): 531 class XMLUIDialog(xmlui_base.XMLUIDialog):
532 type = "dialog" 532 type = "dialog"
533 dialog_factory = WidgetFactory() 533 dialog_factory = WidgetFactory()
534 read_only = False 534 read_only = False
535 535
536 def show(self, dummy=None): 536 def show(self, __=None):
537 self.dlg.show() 537 self.dlg.show()
538 538
539 def _xmluiClose(self): 539 def _xmluiClose(self):
540 pass 540 pass
541 541