aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-categories-config.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-02-06 05:58:39 +0800
committerDan Winship <danw@src.gnome.org>2003-02-06 05:58:39 +0800
commit022bfface06cb27a7747bd003b9220cb0db3d076 (patch)
tree3fce64661c829b39df9d92a36c5e660f6e61928d /e-util/e-categories-config.c
parent4fe7f116d9bd30f6ce3034eeb5d8a5f1edc3bf0e (diff)
downloadgsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.tar
gsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.tar.gz
gsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.tar.bz2
gsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.tar.lz
gsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.tar.xz
gsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.tar.zst
gsoc2013-evolution-022bfface06cb27a7747bd003b9220cb0db3d076.zip
define in terms of privincludedir.
* Makefile.am (eutilincludedir, etc): define in terms of privincludedir. * ename/Makefile.am (libenameincludedir): Likewise * e-account.c: Fix warnings * e-account-list.c: Likewise * e-config-listener.c: Likewise * e-gui-utils.c: Likewise. * e-lang-utils.c: Likewise * e-msgport.c: Likewise * e-passwords.c: Likewise * e-categories-config.c (e_categories_config_open_dialog_for_entry): Use g_object_get/_set rather than gtk_ * e-url.c (e_uri_new): Use g_ascii_strdown instead of deprecated g_strdown. svn path=/trunk/; revision=19771
Diffstat (limited to 'e-util/e-categories-config.c')
-rw-r--r--e-util/e-categories-config.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/e-util/e-categories-config.c b/e-util/e-categories-config.c
index 7131f7b88c..9dcfc53da5 100644
--- a/e-util/e-categories-config.c
+++ b/e-util/e-categories-config.c
@@ -187,17 +187,13 @@ e_categories_config_open_dialog_for_entry (GtkEntry *entry)
text = gtk_entry_get_text (GTK_ENTRY (entry));
dialog = GTK_DIALOG (e_categories_new (text));
- gtk_object_set (GTK_OBJECT (dialog),
- "ecml", ecmlw,
- NULL);
+ g_object_set (dialog, "ecml", ecmlw, NULL);
/* run the dialog */
result = gtk_dialog_run (dialog);
if (result == 0) {
- gtk_object_get (GTK_OBJECT (dialog),
- "categories", &categories,
- NULL);
+ g_object_get (dialog, "categories", &categories, NULL);
gtk_entry_set_text (GTK_ENTRY (entry), categories);
g_free (categories);
}