← Back to team overview

ayatana-commits team mailing list archive

[Branch ~xsplash-team/xsplash/trunk] Rev 64: merge lp:~bratsche/xsplash/add-signal

 

Merge authors:
  Cody Russell (bratsche)
Related merge proposals:
  https://code.launchpad.net/~bratsche/xsplash/add-signal/+merge/11898
  proposed by: Cody Russell (bratsche)
  review: Approve - Neil J. Patel (njpatel)
------------------------------------------------------------
revno: 64 [merge]
committer: Cody Russell <crussell@xxxxxxxxxxxxx>
branch nick: xsplash
timestamp: Wed 2009-09-16 11:04:01 -0500
message:
  merge lp:~bratsche/xsplash/add-signal
modified:
  src/xsplash.c


--
lp:xsplash
https://code.launchpad.net/~xsplash-team/xsplash/trunk

Your team ayatana-commits is subscribed to branch lp:xsplash.
To unsubscribe from this branch go to https://code.launchpad.net/~xsplash-team/xsplash/trunk/+edit-subscription.
=== modified file 'src/xsplash.c'
--- src/xsplash.c	2009-09-14 20:25:30 +0000
+++ src/xsplash.c	2009-09-16 15:59:27 +0000
@@ -111,7 +111,7 @@
                                                           gpointer        user_data);
 
 static void               add_signal                     (gchar *name);
-static void               xsplash_add_signal             (const gchar    *option_name,
+static gboolean           xsplash_add_signal             (const gchar    *option_name,
                                                           const gchar    *value,
                                                           gpointer        data,
                                                           GError        **error);
@@ -807,13 +807,15 @@
   signal_list = g_slist_prepend (signal_list, g_strdup (name));
 }
 
-static void
+static gboolean
 xsplash_add_signal (const gchar  *option_name,
                     const gchar  *value,
                     gpointer      data,
                     GError      **error)
 {
   add_signal (g_strdup (value));
+
+  return TRUE;
 }
 
 void