diff options
author | Matthias Clasen <matthias.clasen@gmail.com> | 2010-11-15 19:54:57 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-15 22:13:25 +0100 |
commit | 5c273f855630bf54f6ebe95ea8b45c8abe2ffff6 (patch) | |
tree | a37d766009a20becb1e8aa96645e4e5d473ee338 /src/gnome-ask-password-agent.vala | |
parent | d8b4dbe6d7b1dcef739927d37b2e763860b85233 (diff) |
build-sys: fix building against libnotify 0.7
Here are two patches I needed to get systemd to build against the
current libnotify and vala releases.
Diffstat (limited to 'src/gnome-ask-password-agent.vala')
-rw-r--r-- | src/gnome-ask-password-agent.vala | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala index 1523e2e3be..6cab6f96a7 100644 --- a/src/gnome-ask-password-agent.vala +++ b/src/gnome-ask-password-agent.vala @@ -38,8 +38,8 @@ public class PasswordDialog : Dialog { set_default_response(ResponseType.OK); set_icon_name(icon); - add_button(STOCK_CANCEL, ResponseType.CANCEL); - add_button(STOCK_OK, ResponseType.OK); + add_button(Stock.CANCEL, ResponseType.CANCEL); + add_button(Stock.OK, ResponseType.OK); Container content = (Container) get_content_area(); @@ -181,8 +181,7 @@ public class MyStatusIcon : StatusIcon { set_visible(true); - Notification n = new Notification(title, message, icon, null); - n.attach_to_status_icon(this); + Notification n = new Notification(title, message, icon); n.set_timeout(5000); n.show(); @@ -226,7 +225,7 @@ public class MyStatusIcon : StatusIcon { OutputStream stream = new UnixOutputStream(to_process, true); - stream.write(password, password.length, null); + stream.write(password.data, null); } } |