* it's SPLIT not SPLITTED :-)
authorDirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>
Thu, 12 Apr 2007 14:35:21 +0000 (14:35 +0000)
committerDirk-Jan C. Binnema <dirk-jan.binnema@nokia.com>
Thu, 12 Apr 2007 14:35:21 +0000 (14:35 +0000)
pmo-trunk-r1552

src/gnome/modest-main-window.c
src/maemo/modest-main-window.c
src/modest-ui-actions.c
src/widgets/modest-main-window.h

index 3be825c..9ecef89 100644 (file)
@@ -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;
 }
index b854c80..d7f9263 100644 (file)
@@ -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);
index 4894a4e..e9f1a63 100644 (file)
@@ -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"); */
index 006b2b6..d772f9f 100644 (file)
@@ -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.
  **/