diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-10-04 05:08:53 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-10-04 05:08:53 +0800 |
commit | e30af5958d430b3e74d39de6a9dbcd76211eec62 (patch) | |
tree | d4937b81b538fb516e1ad858fccb76d55175b59c /composer/e-msg-composer.c | |
parent | cf465a104c748e296245d389c1d17991b3555227 (diff) | |
download | gsoc2013-evolution-e30af5958d430b3e74d39de6a9dbcd76211eec62.tar.gz gsoc2013-evolution-e30af5958d430b3e74d39de6a9dbcd76211eec62.tar.zst gsoc2013-evolution-e30af5958d430b3e74d39de6a9dbcd76211eec62.zip |
Remove the entry_pixcache array to silence the run-time warnings when
2007-10-03 Matthew Barnes <mbarnes@redhat.com>
* composer/e-msg-cmposer.c:
Remove the entry_pixcache array to silence the run-time warnings
when opening a new composer window. The composer seems to work
fine without them; not sure why it was needed in the first place.
svn path=/trunk/; revision=34350
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 232b769270..4e43eaa119 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -3590,17 +3590,6 @@ static BonoboUIVerb entry_verbs [] = { BONOBO_UI_VERB_END }; -static EPixmap entry_pixcache [] = { - E_PIXMAP ("/Toolbar/EditCut", "edit-cut", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/Toolbar/EditCopy", "edit-copy", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/Toolbar/EditPaste", "edit-paste", E_ICON_SIZE_LARGE_TOOLBAR), - E_PIXMAP ("/commands/EditCut", "edit-cut", E_ICON_SIZE_MENU), - E_PIXMAP ("/commands/EditCopy", "edit-copy", E_ICON_SIZE_MENU), - E_PIXMAP ("/commands/EditPaste", "edit-paste", E_ICON_SIZE_MENU), - - E_PIXMAP_END -}; - /* All this snot is so that Cut/Copy/Paste work. */ static gboolean composer_entry_focus_in_event_cb (GtkWidget *widget, GdkEventFocus *event, gpointer user_data) @@ -3625,8 +3614,6 @@ composer_entry_focus_in_event_cb (GtkWidget *widget, GdkEventFocus *event, gpoin "evolution-composer-entries", NULL); g_free (xmlfile); - e_pixmaps_update (p->entry_uic, entry_pixcache); - bonobo_ui_component_thaw (p->entry_uic, NULL); return FALSE; |