whitespace --
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 5 Nov 2011 13:45:42 +0000 (13:45 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 5 Nov 2011 13:45:42 +0000 (13:45 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@64760 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/notification_daemon.c
src/lib/notification/daemon.c

index 40cd6e0..aa9f0a6 100644 (file)
@@ -61,9 +61,9 @@ void
 daemon_note_show(Daemon_Data *d, E_Notification *n)
 {
   e_notification_ref(n);
-  d->open_notes = eina_list_append(d->open_notes, n); 
+  d->open_notes = eina_list_append(d->open_notes, n);
   e_notification_ref(n);
-  d->history = eina_list_append(d->history, n); 
+  d->history = eina_list_append(d->history, n);
 
   // adjust history
   if ((int) eina_list_count(d->history) > d->max_history_length)
@@ -86,7 +86,7 @@ daemon_note_show(Daemon_Data *d, E_Notification *n)
     ecore_timer_add(timeout == -1 ? d->default_timeout : (float)timeout / 1000, cb_note_close_timer, td);
   }
 
-  printf("Received notification from %s:\n%s\n%s\n\n", 
+  printf("Received notification from %s:\n%s\n%s\n\n",
     e_notification_app_name_get(n),
     e_notification_summary_get(n), e_notification_body_get(n)
   );
@@ -125,7 +125,7 @@ cb_notify(E_Notification_Daemon *ndaemon, E_Notification *n)
 
   dd = e_notification_daemon_data_get(ndaemon);
   replaces_id = e_notification_replaces_id_get(n);
-  if (replaces_id) 
+  if (replaces_id)
   {
     // close old one flagged as replaced
   }
index b37abd2..ff5fb41 100644 (file)
@@ -256,4 +256,3 @@ e_notification_daemon_signal_action_invoked(E_Notification_Daemon *ndeamon, unsi
                        NULL, -1, NULL);
    dbus_message_unref(msg);
 }
-