[Xfce4-commits] <xfce4-weather-plugin:master> Replace all occurrences of 'qeue' with 'queue'.

Harald Judt noreply at xfce.org
Thu Jul 26 16:28:01 CEST 2012


Updating branch refs/heads/master
         to 6b1a887e114da5eed4309ba11e26224670e628ca (commit)
       from 833dd0b6ec8b21e52b9f9223847e1765edc3c33c (commit)

commit 6b1a887e114da5eed4309ba11e26224670e628ca
Author: Harald Judt <h.judt at gmx.at>
Date:   Thu Jul 26 16:26:25 2012 +0200

    Replace all occurrences of 'qeue' with 'queue'.

 panel-plugin/weather-http.c |   10 +++++-----
 panel-plugin/weather-http.h |    2 +-
 panel-plugin/weather.c      |    2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/panel-plugin/weather-http.c b/panel-plugin/weather-http.c
index 639bae7..a738194 100644
--- a/panel-plugin/weather-http.c
+++ b/panel-plugin/weather-http.c
@@ -52,7 +52,7 @@
 
 
 /* global */
-static GSList *qeued_transfers = NULL;
+static GSList *queued_transfers = NULL;
 
 enum {
     STATUS_NOT_EXECUTED,
@@ -437,7 +437,7 @@ weather_http_receive_data_destroyed(gpointer user_data)
     }
 
     /* remove from the list */
-    qeued_transfers = g_slist_remove(qeued_transfers, connection);
+    queued_transfers = g_slist_remove(queued_transfers, connection);
 
     /* free other data */
     g_free(connection->hostname);
@@ -483,17 +483,17 @@ weather_http_receive_data(const gchar *hostname,
                                      weather_http_receive_data_destroyed);
 
     /* add the idle function to the running tasks list */
-    qeued_transfers = g_slist_prepend(qeued_transfers, connection);
+    queued_transfers = g_slist_prepend(queued_transfers, connection);
 }
 
 
 void
-weather_http_cleanup_qeue(void)
+weather_http_cleanup_queue(void)
 {
     GSList *li;
     WeatherConnection *connection;
 
-    for (li = qeued_transfers; li; li = li->next) {
+    for (li = queued_transfers; li; li = li->next) {
         connection = li->data;
 
         if (connection->status == STATUS_RUNNING) {
diff --git a/panel-plugin/weather-http.h b/panel-plugin/weather-http.h
index 0053b63..9dc0757 100644
--- a/panel-plugin/weather-http.h
+++ b/panel-plugin/weather-http.h
@@ -26,7 +26,7 @@ typedef void (*WeatherFunc) (gboolean succeed,
                              gpointer user_data);
 
 
-void weather_http_cleanup_qeue(void);
+void weather_http_cleanup_queue(void);
 
 void weather_http_receive_data(const gchar *hostname,
                                const gchar *url,
diff --git a/panel-plugin/weather.c b/panel-plugin/weather.c
index 4dd5dd8..35a75a7 100644
--- a/panel-plugin/weather.c
+++ b/panel-plugin/weather.c
@@ -937,7 +937,7 @@ xfceweather_free(XfcePanelPlugin *plugin,
                  xfceweather_data *data)
 {
     g_assert(data != NULL);
-    weather_http_cleanup_qeue();
+    weather_http_cleanup_queue();
 
     if (data->weatherdata)
         xml_weather_free(data->weatherdata);


More information about the Xfce4-commits mailing list