[Xfce4-commits] <exo:master> Strip some trailing spaces.

Nick Schermer noreply at xfce.org
Fri Oct 16 21:38:02 CEST 2009


Updating branch refs/heads/master
         to d0f1eb81f83a6b2678dbe7e1e2bd72ba414923a9 (commit)
       from 839e9d1420dc8c916e1a375920853331fb022d83 (commit)

commit d0f1eb81f83a6b2678dbe7e1e2bd72ba414923a9
Author: Nick Schermer <nick at xfce.org>
Date:   Fri Oct 16 21:36:55 2009 +0200

    Strip some trailing spaces.

 exo/exo-job.c        |   14 +++++++-------
 exo/exo-simple-job.c |   12 ++++++------
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/exo/exo-job.c b/exo/exo-job.c
index d7a8ad0..e97852a 100644
--- a/exo/exo-job.c
+++ b/exo/exo-job.c
@@ -134,12 +134,12 @@ exo_job_class_init (ExoJobClass *klass)
    * Emitted whenever an error occurs while executing the @job. This signal
    * may not be emitted from within #ExoJob subclasses. If a subclass wants
    * to emit an "error" signal (and thereby terminate the operation), it has
-   * to fill the #GError structure and abort from its execute() method. 
-   * #ExoJob will automatically emit the "error" signal when the #GError is 
+   * to fill the #GError structure and abort from its execute() method.
+   * #ExoJob will automatically emit the "error" signal when the #GError is
    * filled after the execute() method has finished.
    *
    * Callers interested in whether the @job was cancelled can connect to
-   * the "cancelled" signal of the #GCancellable returned from 
+   * the "cancelled" signal of the #GCancellable returned from
    * exo_job_get_cancellable().
    **/
   job_signals[ERROR] =
@@ -175,7 +175,7 @@ exo_job_class_init (ExoJobClass *klass)
    * @job     : an #ExoJob.
    * @message : information to be displayed about @job.
    *
-   * This signal is emitted to display information about the status of 
+   * This signal is emitted to display information about the status of
    * the @job. Examples of messages are "Preparing..." or "Cleaning up...".
    *
    * The @message is garanteed to contain valid UTF-8, so it can be
@@ -195,8 +195,8 @@ exo_job_class_init (ExoJobClass *klass)
    * @job     : an #ExoJob.
    * @percent : the percentage of completeness.
    *
-   * This signal is emitted to present the overall progress of the 
-   * operation. The @percent value is garantied to be a value between 
+   * This signal is emitted to present the overall progress of the
+   * operation. The @percent value is garantied to be a value between
    * 0.0 and 100.0.
    **/
   job_signals[PERCENT] =
@@ -558,7 +558,7 @@ exo_job_get_cancellable (const ExoJob *job)
  * g_cancellable_set_error_if_cancelled (cancellable, error);
  * </programlisting></informalexample>
  *
- * Returns: %TRUE if the job was cancelled and @error is now set, 
+ * Returns: %TRUE if the job was cancelled and @error is now set,
  *          %FALSE otherwise.
  **/
 gboolean
diff --git a/exo/exo-simple-job.c b/exo/exo-simple-job.c
index 7388b7e..0e01386 100644
--- a/exo/exo-simple-job.c
+++ b/exo/exo-simple-job.c
@@ -171,7 +171,7 @@ exo_simple_job_execute (ExoJob  *job,
  * An example could be:
  *
  * <informalexample><programlisting>
- * static gboolean 
+ * static gboolean
  * list_directory (ExoJob      *job,
  *                 GValueArray *param_values,
  *                 GError     **error)
@@ -186,13 +186,13 @@ exo_simple_job_execute (ExoJob  *job,
  *
  *   directory = g_value_get_object (g_value_array_get_nth (param_values, 0));
  *
- *   enumerator = g_file_enumerate_children (directory, 
+ *   enumerator = g_file_enumerate_children (directory,
  *                                           "standard::display-name",
  *                                           G_FILE_QUERY_INFO_NONE,
  *                                           exo_job_get_cancellable (job),
  *                                           &err);
  *
- *   if (err != NULL) 
+ *   if (err != NULL)
  *     {
  *       g_propagate_error (error, err);
  *       return FALSE;
@@ -200,14 +200,14 @@ exo_simple_job_execute (ExoJob  *job,
  *
  *   while (TRUE)
  *     {
- *       info = g_file_enumerator_next_file (enumerator, 
+ *       info = g_file_enumerator_next_file (enumerator,
  *                                           exo_job_get_cancellable (job),
  *                                           &err);
  *
  *       if (info == NULL)
  *         break;
  *
- *       exo_job_info_message (job, _("Child: %s"), 
+ *       exo_job_info_message (job, _("Child: %s"),
  *                             g_file_info_get_display_name (info));
  *
  *       g_object_unref (info);
@@ -234,7 +234,7 @@ exo_simple_job_execute (ExoJob  *job,
  * g_signal_connect (job, "finished", G_CALLBACK (unref_the_job_object), NULL);
  * </programlisting></informalexample>
  *
- * The caller is responsible to release the returned #ExoJob object 
+ * The caller is responsible to release the returned #ExoJob object
  * using g_object_unref() when no longer needed.
  *
  * Returns: the launched #ExoJob.



More information about the Xfce4-commits mailing list