aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--capplet/settings/mail-view.c2
-rw-r--r--mail/e-mail-notebook-view.c2
-rw-r--r--plugins/groupwise-features/proxy.c4
-rw-r--r--plugins/plugin-manager/plugin-manager.c2
-rw-r--r--widgets/misc/e-send-options.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/capplet/settings/mail-view.c b/capplet/settings/mail-view.c
index a344d59251..54a5647e0c 100644
--- a/capplet/settings/mail-view.c
+++ b/capplet/settings/mail-view.c
@@ -138,7 +138,7 @@ mail_view_class_init (MailViewClass *klass)
};
static void
-mv_switch (GtkNotebook *notebook,GtkNotebookPage *page, guint page_num, gpointer user_data)
+mv_switch (GtkNotebook *notebook, GtkWidget *page, guint page_num, gpointer user_data)
{
MailView *shell = (MailView *)notebook;
MailViewPrivate *priv = shell->priv;
diff --git a/mail/e-mail-notebook-view.c b/mail/e-mail-notebook-view.c
index 5add67346f..5403032b79 100644
--- a/mail/e-mail-notebook-view.c
+++ b/mail/e-mail-notebook-view.c
@@ -122,7 +122,7 @@ emnv_get_page_num (EMailNotebookView *view,
}
static void
-mnv_page_changed (GtkNotebook *book, GtkNotebookPage *page,
+mnv_page_changed (GtkNotebook *book, GtkWidget *page,
guint page_num, EMailNotebookView *view)
{
EMailView *mview = (EMailView *)gtk_notebook_get_nth_page (book, page_num);
diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c
index fb0e786239..d8471ab050 100644
--- a/plugins/groupwise-features/proxy.c
+++ b/plugins/groupwise-features/proxy.c
@@ -59,7 +59,7 @@
static GObjectClass *parent_class = NULL;
-static gboolean proxy_page_changed_cb (GtkNotebook *notebook, GtkNotebookPage *page, gint num, EAccount *account);
+static gboolean proxy_page_changed_cb (GtkNotebook *notebook, GtkWidget *page, gint num, EAccount *account);
struct _proxyDialogPrivate {
/* UI data for the Add/Edit Proxy dialog*/
@@ -721,7 +721,7 @@ org_gnome_proxy (EPlugin *epl, EConfigHookItemFactoryData *data)
}
static gboolean
-proxy_page_changed_cb (GtkNotebook *notebook, GtkNotebookPage *page, gint num, EAccount *account)
+proxy_page_changed_cb (GtkNotebook *notebook, GtkWidget *page, gint num, EAccount *account)
{
proxyDialog *prd;
proxyDialogPrivate *priv;
diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c
index 85a8bb3eaf..996f07810f 100644
--- a/plugins/plugin-manager/plugin-manager.c
+++ b/plugins/plugin-manager/plugin-manager.c
@@ -91,7 +91,7 @@ eppm_set_label (GtkLabel *l, const gchar *v)
static void
eppm_switch_page_cb (GtkNotebook *notebook,
- GtkNotebookPage *page,
+ GtkWidget *page,
guint page_num)
{
last_selected_page = page_num;
diff --git a/widgets/misc/e-send-options.c b/widgets/misc/e-send-options.c
index c93dceff88..b858374020 100644
--- a/widgets/misc/e-send-options.c
+++ b/widgets/misc/e-send-options.c
@@ -342,7 +342,7 @@ delay_until_date_changed_cb (GtkWidget *dedit, gpointer data)
}
static void
-page_changed_cb (GtkNotebook *notebook, GtkNotebookPage *page, gint num, gpointer data)
+page_changed_cb (GtkNotebook *notebook, GtkWidget *page, gint num, gpointer data)
{
ESendOptionsDialog *sod = data;
ESendOptionsDialogPrivate *priv = sod->priv;