diff options
author | JP Rosevear <jpr@ximian.com> | 2001-01-16 06:28:54 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-01-16 06:28:54 +0800 |
commit | 754e77948a22d6570dcb879a8992b05e6e4c113f (patch) | |
tree | 9d97c2cf332d0bb1e78a5d65f110ce1ad21f3c94 /shell | |
parent | be1bca258a60907abcb6ae536d5be65baade6ccc (diff) | |
download | gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.tar gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.tar.gz gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.tar.bz2 gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.tar.lz gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.tar.xz gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.tar.zst gsoc2013-evolution-754e77948a22d6570dcb879a8992b05e6e4c113f.zip |
push/pop the color map (e_shell_folder_title_bar_new): and the visual...
2001-01-15 JP Rosevear <jpr@ximian.com>
* e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): push/pop
the color map
(e_shell_folder_title_bar_new): and the visual...
svn path=/trunk/; revision=7515
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 1 | ||||
-rw-r--r-- | shell/e-shell-folder-title-bar.c | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 3e29f5605f..d45fa3183f 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -2,6 +2,7 @@ * e-shell-folder-title-bar.c (e_shell_folder_title_bar_new): push/pop the color map + (e_shell_folder_title_bar_new): and the visual... 2001-01-15 Iain Holmes <iain@ximian.com> diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c index 788bec2a24..a121b8c747 100644 --- a/shell/e-shell-folder-title-bar.c +++ b/shell/e-shell-folder-title-bar.c @@ -256,7 +256,7 @@ realize (GtkWidget *widget) priv = folder_title_bar->priv; pixmap = make_icon_pixmap (folder_title_bar, priv->icon); - priv->icon_widget = gnome_pixmap_new (pixmap, NULL); + priv->icon_widget = gtk_pixmap_new (pixmap, NULL); gdk_pixmap_unref (pixmap); gtk_widget_show (priv->icon_widget); @@ -419,7 +419,9 @@ e_shell_folder_title_bar_new (void) EShellFolderTitleBar *new; 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); |