aboutsummaryrefslogtreecommitdiff
path: root/parrot_zik/indicator/base.py
diff options
context:
space:
mode:
authorMarek Siarkowicz <mareksiarkowicz@gmail.com>2015-06-15 13:30:06 +0200
committerMarek Siarkowicz <mareksiarkowicz@gmail.com>2015-06-15 13:30:06 +0200
commit3b4f022722e43d5821f4d2276018242c88cb1ed3 (patch)
tree83bded768144b8dbc2da3952c7058a10998ca773 /parrot_zik/indicator/base.py
parentdf5aa3102f9d0257224ee9423afdfd42f00592ac (diff)
downloadpyParrotZikTCP-3b4f022722e43d5821f4d2276018242c88cb1ed3.tar.xz
pyParrotZikTCP-3b4f022722e43d5821f4d2276018242c88cb1ed3.zip
Fix quit wrapping.
Diffstat (limited to 'parrot_zik/indicator/base.py')
-rw-r--r--parrot_zik/indicator/base.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/parrot_zik/indicator/base.py b/parrot_zik/indicator/base.py
index 7101790..8204fa9 100644
--- a/parrot_zik/indicator/base.py
+++ b/parrot_zik/indicator/base.py
@@ -13,6 +13,9 @@ class BaseIndicator(object):
def show_about_dialog(self, widget):
raise NotImplementedError
+ def quit(self, _):
+ raise NotImplementedError
+
class MenuItemBase(object):
def __init__(self, base_item, sensitive, visible):
self.base_item = base_item