diff options
author | Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> | 2009-11-13 01:00:12 +0800 |
---|---|---|
committer | Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> | 2009-11-13 01:00:12 +0800 |
commit | b74721f9d85a253e1a6279b1ad7a7ecfef919aa7 (patch) | |
tree | aa6d4a0e3da15b8a9abdadeb0912d2737077dbc4 /src/empathy-main-window.c | |
parent | 6642c2d63dcb8e99e0c094e3d3fb93237a67b752 (diff) | |
download | gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.tar gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.tar.gz gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.tar.bz2 gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.tar.lz gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.tar.xz gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.tar.zst gsoc2013-empathy-b74721f9d85a253e1a6279b1ad7a7ecfef919aa7.zip |
Call g_object_unref instead of gtk_rc_style_unref
Diffstat (limited to 'src/empathy-main-window.c')
-rw-r--r-- | src/empathy-main-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 35ea976d3..473e47706 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -470,7 +470,7 @@ main_window_error_display (EmpathyMainWindow *window, gtk_widget_show (window->errors_vbox); - gtk_rc_style_unref (rc_style); + g_object_unref (rc_style); g_hash_table_insert (window->errors, g_object_ref (account), info_bar); } |