diff options
author | Not Zed <NotZed@Ximian.com> | 2002-12-02 11:23:57 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-12-02 11:23:57 +0800 |
commit | 9d77b85ae36094fd1a0b07be4ebb69e047c9cec1 (patch) | |
tree | bbbaa747e8cf40cb220d651d4b2fdd8159fae652 /shell/e-task-widget.c | |
parent | 2a7bc6967326be929beb1e0d7a3ba091022d59e9 (diff) | |
download | gsoc2013-evolution-9d77b85ae36094fd1a0b07be4ebb69e047c9cec1.tar.gz gsoc2013-evolution-9d77b85ae36094fd1a0b07be4ebb69e047c9cec1.tar.zst gsoc2013-evolution-9d77b85ae36094fd1a0b07be4ebb69e047c9cec1.zip |
changed to use a gtkdialog instead of a gnome one.
2002-11-27 Not Zed <NotZed@Ximian.com>
* main.c (show_development_warning): changed to use a gtkdialog
instead of a gnome one.
(warning_dialog_response_callback): clicked->response.
* e-shell-folder-selection-dialog.c: Include gtk/gtkstock.h
* e-shell-folder-creation-dialog.c: include gnome-dialog.h
(dialog_response_cb): gtk_entry_get_text now returns const. Dont
free result.
* e-setup.c: include gnome-messagebox.h
* *.c: (re)run fix.sh over all, for e_notice changes & pick up
some deprecated functions.
* e-shell-shared-folder-picker-dialog.c
(shared_folder_discovery_callback): reformat e_notice call for
script.
* e-shell-offline-sync.c
(impl_SyncFolderProgressListener_reportFailure): Fix e_notice
call, we weren't passing type in.
* e-shell-folder-commands.c (xfer_result_callback): changed around
slightly to save some processing & allow a script to run.
(e_shell_command_rename_folder): reformat e_notice call to help script.
Include gnome-messagebox.h
svn path=/trunk/; revision=18977
Diffstat (limited to 'shell/e-task-widget.c')
-rw-r--r-- | shell/e-task-widget.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/e-task-widget.c b/shell/e-task-widget.c index 9adf84fe4b..41a59f40d6 100644 --- a/shell/e-task-widget.c +++ b/shell/e-task-widget.c @@ -71,7 +71,7 @@ impl_dispose (GObject *object) } if (priv->icon_pixbuf != NULL) { - gdk_pixbuf_unref (priv->icon_pixbuf); + g_object_unref (priv->icon_pixbuf); priv->icon_pixbuf = NULL; } @@ -97,7 +97,7 @@ impl_finalize (GObject *object) static void class_init (GObjectClass *object_class) { - parent_class = gtk_type_class (PARENT_TYPE); + parent_class = g_type_class_ref(PARENT_TYPE); object_class->dispose = impl_dispose; object_class->finalize = impl_finalize; @@ -151,9 +151,9 @@ e_task_widget_construct (ETaskWidget *task_widget, gtk_container_add (GTK_CONTAINER (frame), box); gtk_widget_show (box); - gtk_widget_set_usize (box, 1, -1); + gtk_widget_set_size_request (box, 1, -1); - priv->icon_pixbuf = gdk_pixbuf_ref (icon_pixbuf); + priv->icon_pixbuf = g_object_ref (icon_pixbuf); gdk_pixbuf_render_pixmap_and_mask (icon_pixbuf, &pixmap, &mask, 128); @@ -167,7 +167,7 @@ e_task_widget_construct (ETaskWidget *task_widget, gtk_box_pack_start (GTK_BOX (box), priv->label, TRUE, TRUE, 0); gdk_pixmap_unref (pixmap); - gdk_bitmap_unref (mask); + g_object_unref (mask); priv->tooltips = gtk_tooltips_new (); g_object_ref (priv->tooltips); |