diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-20 05:34:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-04-20 05:34:42 +0800 |
commit | a9acbd0edfa6af2246ab03fb2855ae8ac8cf1b0e (patch) | |
tree | 4e11292b97cb48643972d7799dedf31d43b707ef /mail/em-account-prefs.c | |
parent | 6c44efe38a69872608ee31954de846aab1a691f2 (diff) | |
download | gsoc2013-evolution-a9acbd0edfa6af2246ab03fb2855ae8ac8cf1b0e.tar.gz gsoc2013-evolution-a9acbd0edfa6af2246ab03fb2855ae8ac8cf1b0e.tar.zst gsoc2013-evolution-a9acbd0edfa6af2246ab03fb2855ae8ac8cf1b0e.zip |
get rid of mark_pixbuf, it's not even sued
svn path=/trunk/; revision=25524
Diffstat (limited to 'mail/em-account-prefs.c')
-rw-r--r-- | mail/em-account-prefs.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mail/em-account-prefs.c b/mail/em-account-prefs.c index 35f27ec161..91de5e5f87 100644 --- a/mail/em-account-prefs.c +++ b/mail/em-account-prefs.c @@ -39,7 +39,6 @@ #include "e-util/e-account-list.h" #include "em-account-prefs.h" -#include <e-util/e-icon-factory.h> static void em_account_prefs_class_init (EMAccountPrefsClass *class); static void em_account_prefs_init (EMAccountPrefs *prefs); @@ -95,8 +94,6 @@ em_account_prefs_init (EMAccountPrefs *prefs) { prefs->druid = NULL; prefs->editor = NULL; - - prefs->mark_pixbuf = e_icon_factory_get_icon ("stock_mark", 16); } static void @@ -115,7 +112,6 @@ em_account_prefs_finalise (GObject *obj) EMAccountPrefs *prefs = (EMAccountPrefs *) obj; g_object_unref (prefs->gui); - g_object_unref (prefs->mark_pixbuf); G_OBJECT_CLASS (parent_class)->finalize (obj); } |