summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--TODO4
-rw-r--r--xfce4-session/startup.c4
3 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c2797f3a..8866a924 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-10 00:50 bmeurer
+
+ * ChangeLog, po/de.gmo, po/de.po, po/es.gmo, po/es.po,
+ po/es_MX.gmo, po/es_MX.po, po/nl.gmo, po/nl.po: Updated po's
+
2003-07-10 00:46 bmeurer
* ChangeLog, Makefile.am, Makefile.in, NEWS, TODO, config.h.in,
diff --git a/TODO b/TODO
index e0c56883..2832f941 100644
--- a/TODO
+++ b/TODO
@@ -12,3 +12,7 @@
* Try to translate userids provided by smproxy to usernames if hostnames
match.
+
+ * Add tooltip to the trayicon "x clients connected"
+
+ * Add APM support
diff --git a/xfce4-session/startup.c b/xfce4-session/startup.c
index 45df53c4..1ad9334a 100644
--- a/xfce4-session/startup.c
+++ b/xfce4-session/startup.c
@@ -209,11 +209,11 @@ pending_continue(Client *client)
gtk_widget_show(splash);
/* XXX - give time to the splash screen to appear */
- g_idle_add((GSourceFunc)pending_timeout, NULL);
+ (void)g_timeout_add(100, (GSourceFunc)pending_timeout, NULL);
return;
}
- g_idle_add((GSourceFunc)pending_launch, NULL);
+ (void)g_timeout_add(100, (GSourceFunc)pending_launch, NULL);
}