diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2011-11-02 22:45:40 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2011-11-02 22:45:40 +0800 |
commit | 3e8b4d35580674c0271de8f12278625de963c9f6 (patch) | |
tree | 8fe83fa461b2ec39b54770acb03c7993fceaab4c | |
parent | 40dc4074eeecb15c82d9eacb3fcd54cff7162440 (diff) | |
download | gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.tar gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.tar.gz gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.tar.bz2 gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.tar.lz gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.tar.xz gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.tar.zst gsoc2013-empathy-3e8b4d35580674c0271de8f12278625de963c9f6.zip |
Fix set-but-not-used build warning
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index b899cfa09..10ea8af5e 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -316,8 +316,8 @@ select_account_once_ready (EmpathyLogWindow *self, self->priv->selected_is_chatroom = is_chatroom; - empathy_account_chooser_set_account (EMPATHY_ACCOUNT_CHOOSER ( - self->priv->account_chooser), self->priv->selected_account); + empathy_account_chooser_set_account (account_chooser, + self->priv->selected_account); } static void |