chiark / gitweb /
Revert "update TODO"
authorKay Sievers <kay.sievers@vrfy.org>
Wed, 17 Nov 2010 12:19:10 +0000 (13:19 +0100)
committerKay Sievers <kay.sievers@vrfy.org>
Wed, 17 Nov 2010 12:19:10 +0000 (13:19 +0100)
This reverts commit afe635e71838c9e62e25a928cbcefc343744dda5.

Oops, libnotify should not have been in here.

TODO
configure.ac
src/gnome-ask-password-agent.vala

diff --git a/TODO b/TODO
index f3788c52684dbaa01628b1872a1976f63a753aeb..98d37c0dadb3272e622e8a09bad1ed3b27fdb462 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,12 +1,3 @@
-* leaving file open on mounted non-root filesystems breaks shutdown
-  systemd is confused if something goes:
-    mounted→unmounting→mounted
-
-* /lib/systemd/systemd-user-sessions stop seems to leave
-  processes behind
-
-* SIGQUIT on shutdown? avahi-daemon[202]: Got SIGQUIT, quitting.
-
 * check if bind mounts work:
     https://bugzilla.novell.com/show_bug.cgi?id=652762
 
 * check if bind mounts work:
     https://bugzilla.novell.com/show_bug.cgi?id=652762
 
index d0838516e1021aa796037dc123563777a0767c2b..d29e2d8a3badc3558df4c1aaed3493f74fc69ad2 100644 (file)
@@ -256,12 +256,12 @@ if test "$have_gtk" = "yes"; then
         AC_SUBST(DBUSGLIB_CFLAGS)
         AC_SUBST(DBUSGLIB_LIBS)
 
         AC_SUBST(DBUSGLIB_CFLAGS)
         AC_SUBST(DBUSGLIB_LIBS)
 
-        PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify ])
+        PKG_CHECK_MODULES(LIBNOTIFY, [ libnotify >= 0.7.0 ])
         AC_SUBST(LIBNOTIFY_CFLAGS)
         AC_SUBST(LIBNOTIFY_LIBS)
 fi
 
         AC_SUBST(LIBNOTIFY_CFLAGS)
         AC_SUBST(LIBNOTIFY_LIBS)
 fi
 
-AM_PROG_VALAC([0.9])
+AM_PROG_VALAC([0.11])
 AC_SUBST(VAPIDIR)
 AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x)
 
 AC_SUBST(VAPIDIR)
 AM_CONDITIONAL(HAVE_VALAC, test x"$VALAC" != x)
 
index 1523e2e3bef16d805a6845d795085399a5c294c4..6cab6f96a776523b76027f094469848168bbc529 100644 (file)
@@ -38,8 +38,8 @@ public class PasswordDialog : Dialog {
                 set_default_response(ResponseType.OK);
                 set_icon_name(icon);
 
                 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();
 
 
                 Container content = (Container) get_content_area();
 
@@ -181,8 +181,7 @@ public class MyStatusIcon : StatusIcon {
 
                 set_visible(true);
 
 
                 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();
 
                 n.set_timeout(5000);
                 n.show();
 
@@ -226,7 +225,7 @@ public class MyStatusIcon : StatusIcon {
 
                 OutputStream stream = new UnixOutputStream(to_process, true);
 
 
                 OutputStream stream = new UnixOutputStream(to_process, true);
 
-                stream.write(password, password.length, null);
+                stream.write(password.data, null);
         }
 }
 
         }
 }