aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-01-17 06:08:20 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-01-17 06:08:20 +0800
commit90da9523a1db9f89384335f5fd07a4a09c67bf5c (patch)
tree101d4c071cdc86d239ef97560cdb208de70326a4
parent2a980bca5709b79f73517cf9cf752cfe79dbb00a (diff)
downloadgsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.tar
gsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.tar.gz
gsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.tar.bz2
gsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.tar.lz
gsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.tar.xz
gsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.tar.zst
gsoc2013-evolution-90da9523a1db9f89384335f5fd07a4a09c67bf5c.zip
pop the visual/cm after the construct
2001-01-16 JP Rosevear <jpr@ximian.com> * e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): pop the visual/cm after the construct svn path=/trunk/; revision=7546
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-folder-title-bar.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index d45fa3183f..b7f87fff85 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-16 JP Rosevear <jpr@ximian.com>
+
+ * e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): pop the
+ visual/cm after the construct
+
2001-01-15 JP Rosevear <jpr@ximian.com>
* e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): push/pop
diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c
index a121b8c747..abd47f59a5 100644
--- a/shell/e-shell-folder-title-bar.c
+++ b/shell/e-shell-folder-title-bar.c
@@ -421,10 +421,10 @@ e_shell_folder_title_bar_new (void)
gtk_widget_push_colormap (gdk_rgb_get_cmap ());
gtk_widget_push_visual (gdk_rgb_get_visual ());
new = gtk_type_new (e_shell_folder_title_bar_get_type ());
- gtk_widget_pop_visual ();
- gtk_widget_pop_colormap ();
e_shell_folder_title_bar_construct (new);
+ gtk_widget_pop_visual ();
+ gtk_widget_pop_colormap ();
return GTK_WIDGET (new);
}