aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-theme-adium.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2008-07-17 16:32:34 +0800
committerXavier Claessens <xclaesse@gmail.com>2009-06-12 00:06:29 +0800
commit0e59e586c3806cc95c3e6cb20621333ca1a35386 (patch)
tree16450063863ee8912bee3bcef75bc3c188cf3b50 /libempathy-gtk/empathy-theme-adium.c
parent9f7e19517623ea663dcd54b84b3839fbbf2c582c (diff)
downloadgsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.tar
gsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.tar.gz
gsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.tar.bz2
gsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.tar.lz
gsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.tar.xz
gsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.tar.zst
gsoc2013-empathy-0e59e586c3806cc95c3e6cb20621333ca1a35386.zip
rename ready to page_loaded, it explains better what it does.
Diffstat (limited to 'libempathy-gtk/empathy-theme-adium.c')
-rw-r--r--libempathy-gtk/empathy-theme-adium.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c
index 5277810cf..271a73652 100644
--- a/libempathy-gtk/empathy-theme-adium.c
+++ b/libempathy-gtk/empathy-theme-adium.c
@@ -43,7 +43,7 @@ typedef struct {
gchar *out_nextcontent_html;
gsize out_nextcontent_len;
EmpathyContact *last_contact;
- gboolean ready;
+ gboolean page_loaded;
GList *message_queue;
gchar *default_avatar_filename;
} EmpathyThemeAdiumPriv;
@@ -191,7 +191,7 @@ theme_adium_append_message (EmpathyChatView *view,
gchar *escape;
const gchar *func;
- if (!priv->ready) {
+ if (!priv->page_loaded) {
priv->message_queue = g_list_prepend (priv->message_queue,
g_object_ref (msg));
return;
@@ -402,7 +402,7 @@ theme_adium_load_finished_cb (WebKitWebView *view,
EmpathyChatView *chat_view = EMPATHY_CHAT_VIEW (view);
DEBUG ("Page loaded");
- priv->ready = TRUE;
+ priv->page_loaded = TRUE;
/* Display queued messages */
priv->message_queue = g_list_reverse (priv->message_queue);