From 230e5a3fb08c5784c451e611a6987adafac1250e Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Wed, 17 Nov 2010 13:19:10 +0100 Subject: Revert "update TODO" This reverts commit afe635e71838c9e62e25a928cbcefc343744dda5. Oops, libnotify should not have been in here. --- src/gnome-ask-password-agent.vala | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src') 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); } } -- cgit v1.2.3-54-g00ecf