aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-09-05 09:18:15 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-05 09:18:15 +0800
commite9fe87ee9923aaa3bcb29e162d823267337ab274 (patch)
tree0d6c8e8c0a652c4f355a5ea7f203da52beb8747f /plugins
parent54b282cf4fbac0d4dfbbe90caa2a206eb088f76d (diff)
downloadgsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.tar
gsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.tar.gz
gsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.tar.bz2
gsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.tar.lz
gsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.tar.xz
gsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.tar.zst
gsoc2013-evolution-e9fe87ee9923aaa3bcb29e162d823267337ab274.zip
Remove some obsolete utility functions.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/exchange-operations/exchange-delegates-user.c2
-rw-r--r--plugins/exchange-operations/exchange-delegates.c4
-rw-r--r--plugins/exchange-operations/exchange-folder-size-display.c2
-rw-r--r--plugins/exchange-operations/exchange-user-dialog.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/plugins/exchange-operations/exchange-delegates-user.c b/plugins/exchange-operations/exchange-delegates-user.c
index 191ed25fc8..555b0ee73b 100644
--- a/plugins/exchange-operations/exchange-delegates-user.c
+++ b/plugins/exchange-operations/exchange-delegates-user.c
@@ -226,7 +226,7 @@ exchange_delegates_user_edit (ExchangeAccount *account,
dialog = glade_xml_get_widget (xml, "delegate_permissions");
gtk_window_set_title (GTK_WINDOW (dialog), title);
- e_dialog_set_transient_for (GTK_WINDOW (dialog), parent_window);
+ gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window);
g_free (title);
table = glade_xml_get_widget (xml, "toplevel_table");
diff --git a/plugins/exchange-operations/exchange-delegates.c b/plugins/exchange-operations/exchange-delegates.c
index 7b466ead07..dda48dfeb2 100644
--- a/plugins/exchange-operations/exchange-delegates.c
+++ b/plugins/exchange-operations/exchange-delegates.c
@@ -580,7 +580,7 @@ remove_button_clicked_cb (GtkWidget *widget, gpointer data)
GTK_BUTTONS_YES_NO,
_("Remove the delegate %s?"),
user->display_name);
- e_dialog_set_transient_for (GTK_WINDOW (dialog), widget);
+ gtk_window_set_transient_for (GTK_WINDOW (dialog), widget);
btn = gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
@@ -929,7 +929,7 @@ exchange_delegates (ExchangeAccount *account, GtkWidget *parent)
g_signal_connect (delegates->dialog, "response",
G_CALLBACK (dialog_response), delegates);
- e_dialog_set_transient_for (GTK_WINDOW (delegates->dialog), parent);
+ gtk_window_set_transient_for (GTK_WINDOW (delegates->dialog), parent);
delegates->parent = parent;
g_object_weak_ref (G_OBJECT (parent), parent_destroyed, delegates);
diff --git a/plugins/exchange-operations/exchange-folder-size-display.c b/plugins/exchange-operations/exchange-folder-size-display.c
index 1a916a9f1b..8db56b80a2 100644
--- a/plugins/exchange-operations/exchange-folder-size-display.c
+++ b/plugins/exchange-operations/exchange-folder-size-display.c
@@ -119,7 +119,7 @@ exchange_folder_size_display (GtkListStore *model, GtkWidget *parent)
table = glade_xml_get_widget (xml, "folder_treeview");
g_object_unref (xml);
- e_dialog_set_transient_for (GTK_WINDOW (dialog), parent);
+ gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
/* fsize->parent = parent; */
/* Set up the table */
diff --git a/plugins/exchange-operations/exchange-user-dialog.c b/plugins/exchange-operations/exchange-user-dialog.c
index eec2c7bddc..823226427d 100644
--- a/plugins/exchange-operations/exchange-user-dialog.c
+++ b/plugins/exchange-operations/exchange-user-dialog.c
@@ -134,7 +134,7 @@ e2k_user_dialog_construct (E2kUserDialog *dialog,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
- e_dialog_set_transient_for (GTK_WINDOW (dialog), parent_window);
+ gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window);
priv = dialog->priv;
priv->section_name = g_strdup (section_name);