コード例 #1
0
ファイル: memory.py プロジェクト: UoMCS/Perentie
    def _show_placeholder(self, title, body):
        """
		We have no memories, add a single page with the given title and message.
		"""
        placeholder = Placeholder(title, body, gtk.STOCK_DIALOG_WARNING)
        placeholder.show()
        self.append_page(placeholder)
        self.set_show_tabs(False)