aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-06 02:29:21 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-06 02:29:21 +0800
commitbc5f022e55f49e38241e7144bc5ea1523b223f1f (patch)
tree39fdfdac9189ef9ad497b72c062bce0da778c50f /shell/e-shell-importer.c
parent0e595276e5b32beae2a10ad3deb47a802866326f (diff)
downloadgsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.tar
gsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.tar.gz
gsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.tar.bz2
gsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.tar.lz
gsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.tar.xz
gsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.tar.zst
gsoc2013-evolution-bc5f022e55f49e38241e7144bc5ea1523b223f1f.zip
Use g_object_get_data() instead of gtk_object_get_data(). Likewise.
* e-folder-list.c: Use g_object_get_data() instead of gtk_object_get_data(). * e-shell-config-default-folders.c: Likewise. * e-shell-folder-creation-dialog.c: Likewise. * e-shell-importer.c: Likewise. * e-shell-shared-folder-picker-dialog.c: Likewise. * e-shell-user-creatable-items-handler.c: Likewise. * e-shell-view.c: Likewise. * e-shell.c: Likewise. * e-storage.c: Likewise. svn path=/trunk/; revision=18557
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index f46a392d33..9cfedb9dc0 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -600,7 +600,7 @@ item_selected (GtkWidget *item,
char *iid;
g_free (data->choosen_iid);
- iid = gtk_object_get_data (GTK_OBJECT (item), "oafiid");
+ iid = g_object_get_data (G_OBJECT (item), "oafiid");
if (iid == NULL)
data->choosen_iid = g_strdup ("Automatic");
else