From af22975e59fa7288ce28e7cf089eb12f7f2e07b8 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 12 Apr 2007 14:35:21 +0000 Subject: [PATCH] * it's SPLIT not SPLITTED :-) pmo-trunk-r1552 --- src/gnome/modest-main-window.c | 2 +- src/maemo/modest-main-window.c | 4 ++-- src/modest-ui-actions.c | 4 ++-- src/widgets/modest-main-window.h | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/gnome/modest-main-window.c b/src/gnome/modest-main-window.c index 3be825c..9ecef89 100644 --- a/src/gnome/modest-main-window.c +++ b/src/gnome/modest-main-window.c @@ -702,5 +702,5 @@ ModestMainWindowStyle modest_main_window_get_style (ModestMainWindow *self) { /* TODO */ - return MODEST_MAIN_WINDOW_STYLE_SPLITTED; + return MODEST_MAIN_WINDOW_STYLE_SPLIT; } diff --git a/src/maemo/modest-main-window.c b/src/maemo/modest-main-window.c index b854c80..d7f9263 100644 --- a/src/maemo/modest-main-window.c +++ b/src/maemo/modest-main-window.c @@ -182,7 +182,7 @@ modest_main_window_init (ModestMainWindow *obj) priv->main_vbox = NULL; priv->header_view = NULL; priv->folder_view = NULL; - priv->style = MODEST_MAIN_WINDOW_STYLE_SPLITTED; + priv->style = MODEST_MAIN_WINDOW_STYLE_SPLIT; /* progress bar */ priv->progress_bar = gtk_progress_bar_new (); @@ -532,7 +532,7 @@ modest_main_window_set_style (ModestMainWindow *self, /* Reparent header view with scrolled window */ gtk_widget_reparent (scrolled_win, priv->main_vbox); break; - case MODEST_MAIN_WINDOW_STYLE_SPLITTED: + case MODEST_MAIN_WINDOW_STYLE_SPLIT: /* Remove header view */ g_object_ref (scrolled_win); gtk_container_remove (GTK_CONTAINER (priv->main_vbox), scrolled_win); diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index 4894a4e..e9f1a63 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -1646,10 +1646,10 @@ modest_ui_actions_toggle_main_view (GtkAction *action, /* modest_widget_memory_save (conf, G_OBJECT(header_view), "header-view"); */ - if (modest_main_window_get_style (main_window) == MODEST_MAIN_WINDOW_STYLE_SPLITTED) + if (modest_main_window_get_style (main_window) == MODEST_MAIN_WINDOW_STYLE_SPLIT) modest_main_window_set_style (main_window, MODEST_MAIN_WINDOW_STYLE_SIMPLE); else - modest_main_window_set_style (main_window, MODEST_MAIN_WINDOW_STYLE_SPLITTED); + modest_main_window_set_style (main_window, MODEST_MAIN_WINDOW_STYLE_SPLIT); /* modest_widget_memory_restore (conf, G_OBJECT(header_view), */ /* "header-view"); */ diff --git a/src/widgets/modest-main-window.h b/src/widgets/modest-main-window.h index 006b2b6..d772f9f 100644 --- a/src/widgets/modest-main-window.h +++ b/src/widgets/modest-main-window.h @@ -62,7 +62,7 @@ struct _ModestMainWindowClass { typedef enum _ModestMainWindowStyle { MODEST_MAIN_WINDOW_STYLE_SIMPLE, - MODEST_MAIN_WINDOW_STYLE_SPLITTED + MODEST_MAIN_WINDOW_STYLE_SPLIT } ModestMainWindowStyle; /** @@ -125,7 +125,7 @@ gboolean modest_main_window_close_all (ModestMainWindow *self); * @self: the #ModestMainWindow * @style: a #ModestMainWindowStyle that will be set * - * sets the style of the main window, a splitted view with folders at + * sets the style of the main window, a splitview with folders at * the left and messages at the right, or the simple view, with just * messages. **/ -- 1.7.9.5