X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fgnome-ask-password-agent.vala;h=1523e2e3bef16d805a6845d795085399a5c294c4;hp=6cab6f96a776523b76027f094469848168bbc529;hb=afe635e71838c9e62e25a928cbcefc343744dda5;hpb=b6a7b0890ea7d4625e31fa5f413cc94b13660d91 diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala index 6cab6f96a..1523e2e3b 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,7 +181,8 @@ public class MyStatusIcon : StatusIcon { set_visible(true); - Notification n = new Notification(title, message, icon); + Notification n = new Notification(title, message, icon, null); + n.attach_to_status_icon(this); n.set_timeout(5000); n.show(); @@ -225,7 +226,7 @@ public class MyStatusIcon : StatusIcon { OutputStream stream = new UnixOutputStream(to_process, true); - stream.write(password.data, null); + stream.write(password, password.length, null); } }