aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-09-25 16:51:27 +0800
committerMilan Crha <mcrha@redhat.com>2009-09-25 16:51:27 +0800
commitface752169b27bad4c3cdec8395aee79e40eba7f (patch)
tree0049edd8d4ae0408398f7b1ec240deba3a7d6092
parent17ccb42efb09717a26d7bfceee7a18ad67d71411 (diff)
downloadgsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.tar
gsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.tar.gz
gsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.tar.bz2
gsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.tar.lz
gsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.tar.xz
gsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.tar.zst
gsoc2013-evolution-face752169b27bad4c3cdec8395aee79e40eba7f.zip
Overlooked compiler warnings from exchange-operations plugin
-rw-r--r--plugins/exchange-operations/exchange-delegates-user.c2
-rw-r--r--plugins/exchange-operations/exchange-folder-size-display.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/exchange-operations/exchange-delegates-user.c b/plugins/exchange-operations/exchange-delegates-user.c
index faf80619cb..7c1101f349 100644
--- a/plugins/exchange-operations/exchange-delegates-user.c
+++ b/plugins/exchange-operations/exchange-delegates-user.c
@@ -234,7 +234,7 @@ exchange_delegates_user_edit (ExchangeAccount *account,
NULL);
if (parent_window)
- gtk_window_set_transient_for (GTK_WINDOW (delegate_permissions), parent_window);
+ gtk_window_set_transient_for (GTK_WINDOW (delegate_permissions), GTK_WINDOW (parent_window));
dialog_vbox1 = gtk_dialog_get_content_area (GTK_DIALOG (delegate_permissions));
gtk_widget_show (dialog_vbox1);
diff --git a/plugins/exchange-operations/exchange-folder-size-display.c b/plugins/exchange-operations/exchange-folder-size-display.c
index 7e1fc7ff89..325483f67a 100644
--- a/plugins/exchange-operations/exchange-folder-size-display.c
+++ b/plugins/exchange-operations/exchange-folder-size-display.c
@@ -123,7 +123,7 @@ exchange_folder_size_display (GtkListStore *model, GtkWidget *parent)
gtk_window_set_position (GTK_WINDOW (folder_tree), GTK_WIN_POS_CENTER_ON_PARENT);
gtk_window_set_default_size (GTK_WINDOW (folder_tree), 250, 300);
if (parent)
- gtk_window_set_transient_for (GTK_WINDOW (folder_tree), parent);
+ gtk_window_set_transient_for (GTK_WINDOW (folder_tree), GTK_WINDOW (parent));
dialog_vbox1 = gtk_dialog_get_content_area (GTK_DIALOG (folder_tree));
gtk_widget_show (dialog_vbox1);