diff options
author | charles kerr <charlesk@canonical.com> | 2015-12-21 12:25:11 -0600 |
---|---|---|
committer | charles kerr <charlesk@canonical.com> | 2015-12-21 12:25:11 -0600 |
commit | de4493a64a59e6905c6f3f02902783daa86c051e (patch) | |
tree | 47d32c413a29b6fef160bf13f7fc81b348c182cc /src/warn-notification.vala | |
parent | d1b0d523e3ef744247187378ae3f1655d8622029 (diff) | |
download | ayatana-indicator-sound-de4493a64a59e6905c6f3f02902783daa86c051e.tar.gz ayatana-indicator-sound-de4493a64a59e6905c6f3f02902783daa86c051e.tar.bz2 ayatana-indicator-sound-de4493a64a59e6905c6f3f02902783daa86c051e.zip |
add tracer GLib.message() calls
Diffstat (limited to 'src/warn-notification.vala')
-rw-r--r-- | src/warn-notification.vala | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/warn-notification.vala b/src/warn-notification.vala index 4f45a5c..fb5b613 100644 --- a/src/warn-notification.vala +++ b/src/warn-notification.vala @@ -47,11 +47,10 @@ public class IndicatorSound.WarnNotification: Notification _notification.add_action ("ok", _("OK"), (n, a) => { user_responded(Response.OK); }); - _notification.add_action ("cancel", _("Cancel"), (n, a) => { user_responded(Response.CANCEL); }); - + GLib.message("showing warning dialog"); show_(); return true; |