diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-backend.c | 2 | ||||
-rw-r--r-- | shell/e-shell-backend.h | 1 | ||||
-rw-r--r-- | shell/e-shell-content.c | 5 | ||||
-rw-r--r-- | shell/e-shell-sidebar.c | 10 |
4 files changed, 11 insertions, 7 deletions
diff --git a/shell/e-shell-backend.c b/shell/e-shell-backend.c index c996d8ab01..f3c35c687c 100644 --- a/shell/e-shell-backend.c +++ b/shell/e-shell-backend.c @@ -370,7 +370,7 @@ e_shell_backend_start (EShellBackend *shell_backend) } /** - * e_shell_migrate: + * e_shell_backend_migrate: * @shell_backend: an #EShellBackend * @major: major part of version to migrate from * @minor: minor part of version to migrate from diff --git a/shell/e-shell-backend.h b/shell/e-shell-backend.h index 026a0358a4..ad1b1294fb 100644 --- a/shell/e-shell-backend.h +++ b/shell/e-shell-backend.h @@ -123,7 +123,6 @@ gint e_shell_backend_compare (EShellBackend *shell_backend_a, EShellBackend *shell_backend_b); const gchar * e_shell_backend_get_config_dir (EShellBackend *shell_backend); const gchar * e_shell_backend_get_data_dir (EShellBackend *shell_backend); -const gchar * e_shell_backend_get_filename (EShellBackend *shell_backend); struct _EShell *e_shell_backend_get_shell (EShellBackend *shell_backend); void e_shell_backend_add_activity (EShellBackend *shell_backend, EActivity *activity); diff --git a/shell/e-shell-content.c b/shell/e-shell-content.c index 0d787749f8..821f683d96 100644 --- a/shell/e-shell-content.c +++ b/shell/e-shell-content.c @@ -820,6 +820,11 @@ shell_content_class_init (EShellContentClass *class) G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); + /** + * EShellContent:shell-view + * + * The #EShellView to which the content widget belongs. + **/ g_object_class_install_property ( object_class, PROP_SHELL_VIEW, diff --git a/shell/e-shell-sidebar.c b/shell/e-shell-sidebar.c index 4fb01e358d..517999bad5 100644 --- a/shell/e-shell-sidebar.c +++ b/shell/e-shell-sidebar.c @@ -317,13 +317,13 @@ shell_sidebar_class_init (EShellSidebarClass *class) * EShellSidebar:icon-name * * The named icon is displayed at the top of the sidebar. - */ + **/ g_object_class_install_property ( object_class, PROP_ICON_NAME, g_param_spec_string ( "icon-name", - NULL, + "Icon Name", NULL, NULL, G_PARAM_READWRITE)); @@ -338,7 +338,7 @@ shell_sidebar_class_init (EShellSidebarClass *class) PROP_PRIMARY_TEXT, g_param_spec_string ( "primary-text", - NULL, + "Primary Text", NULL, NULL, G_PARAM_READWRITE)); @@ -354,7 +354,7 @@ shell_sidebar_class_init (EShellSidebarClass *class) PROP_SECONDARY_TEXT, g_param_spec_string ( "secondary-text", - NULL, + "Secondary Text", NULL, NULL, G_PARAM_READWRITE)); @@ -369,7 +369,7 @@ shell_sidebar_class_init (EShellSidebarClass *class) PROP_SHELL_VIEW, g_param_spec_object ( "shell-view", - NULL, + "Shell View", NULL, E_TYPE_SHELL_VIEW, G_PARAM_READWRITE | |