[Galago-commits] r2759 - in trunk/notification-daemon: . src
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Fri Apr 21 15:56:04 PDT 2006
Author: chipx86
Date: 2006-04-21 15:56:01 -0700 (Fri, 21 Apr 2006)
New Revision: 2759
Modified:
trunk/notification-daemon/ChangeLog
trunk/notification-daemon/NEWS
trunk/notification-daemon/src/daemon.c
Log:
Fix notifications with a timeout >= 2147484ms expiring in less than a second. This fixes bug #22.
Modified: trunk/notification-daemon/ChangeLog
===================================================================
--- trunk/notification-daemon/ChangeLog 2006-04-21 22:35:52 UTC (rev 2758)
+++ trunk/notification-daemon/ChangeLog 2006-04-21 22:56:01 UTC (rev 2759)
@@ -1,3 +1,10 @@
+Fri Apr 21 15:54:01 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
+
+ * src/daemon.c:
+ * NEWS:
+ - Fix notifications with a timeout >= 2147484ms expiring in less
+ than a second. This fixes bug #22.
+
Fri Apr 21 15:21:45 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
* src/engines.c:
Modified: trunk/notification-daemon/NEWS
===================================================================
--- trunk/notification-daemon/NEWS 2006-04-21 22:35:52 UTC (rev 2758)
+++ trunk/notification-daemon/NEWS 2006-04-21 22:56:01 UTC (rev 2759)
@@ -5,6 +5,9 @@
theme).
* Disabled the Bubble theme for this release. It's the source of too
many bugs.
+ * Fixed incorrect usage of GtkIconTheme. (Bug #38)
+ * Fixed notifications with a timeout of 2147484ms or longer expiring
+ in less than a second. (Bug #22)
version 0.3.4 (4-February-2006):
* Added a Close button to notifications. This closed ticket #8. Thanks
Modified: trunk/notification-daemon/src/daemon.c
===================================================================
--- trunk/notification-daemon/src/daemon.c 2006-04-21 22:35:52 UTC (rev 2758)
+++ trunk/notification-daemon/src/daemon.c 2006-04-21 22:56:01 UTC (rev 2759)
@@ -270,7 +270,7 @@
{
NotifyTimeout *nt = (NotifyTimeout *)value;
gboolean *phas_more_timeouts = (gboolean *)data;
- glong remaining;
+ gulong remaining;
GTimeVal now;
if (!nt->has_timeout)
More information about the galago-commits
mailing list