aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-09-23 09:06:45 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-09-23 09:26:54 +0800
commit5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9 (patch)
tree9cc98eedb4934fd6e380596caf6caaf95d13cb9f /shell
parent785c9829b8312649e28ec412696a9e3a8732ef19 (diff)
downloadgsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.tar
gsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.tar.gz
gsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.tar.bz2
gsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.tar.lz
gsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.tar.xz
gsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.tar.zst
gsoc2013-evolution-5b771a75004ddbd6bfa29b50cdb7a0e188eafbb9.zip
Developer documentation improvements.
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-backend.c2
-rw-r--r--shell/e-shell-backend.h1
-rw-r--r--shell/e-shell-content.c5
-rw-r--r--shell/e-shell-sidebar.c10
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 |