diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2010-11-26 17:59:53 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2010-11-26 17:59:53 +0100 |
commit | d0ef2204b4256189afc2188f0765338d616ca757 (patch) | |
tree | 01dfee9ec3e2e76b41029be42597742714bd1ce8 /src | |
parent | 0c8744ccde16e0c55ab76c19ce788fe7655a407c (diff) |
gnome-ask-password-agent: also support libnotify < 0.7 for now
Diffstat (limited to 'src')
-rw-r--r-- | src/gnome-ask-password-agent.vala | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala index 6cab6f96a7..61bbba0f7c 100644 --- a/src/gnome-ask-password-agent.vala +++ b/src/gnome-ask-password-agent.vala @@ -38,8 +38,13 @@ public class PasswordDialog : Dialog { set_default_response(ResponseType.OK); set_icon_name(icon); +#if LIBNOTIFY07 add_button(Stock.CANCEL, ResponseType.CANCEL); add_button(Stock.OK, ResponseType.OK); +#else + add_button(STOCK_CANCEL, ResponseType.CANCEL); + add_button(STOCK_OK, ResponseType.OK); +#endif Container content = (Container) get_content_area(); @@ -181,7 +186,12 @@ public class MyStatusIcon : StatusIcon { set_visible(true); +#if LIBNOTIFY07 Notification n = new Notification(title, message, icon); +#else + Notification n = new Notification(title, message, icon, null); + n.attach_to_status_icon(this); +#endif n.set_timeout(5000); n.show(); @@ -225,7 +235,11 @@ public class MyStatusIcon : StatusIcon { OutputStream stream = new UnixOutputStream(to_process, true); +#if LIBNOTIFY07 stream.write(password.data, null); +#else + stream.write(password, password.length, null); +#endif } } |