diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-03-31 22:21:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-04-01 00:10:54 +0800 |
commit | 85fac8778261ce1fc80d8857158eb18a399da9ee (patch) | |
tree | 26e1d145ea7bb211b7fd5c26ba39be89a9a048d2 /shell/e-shell-utils.c | |
parent | 0494d4c3c67403293c496d0ab6ce498b954a8a06 (diff) | |
download | gsoc2013-evolution-85fac8778261ce1fc80d8857158eb18a399da9ee.tar.gz gsoc2013-evolution-85fac8778261ce1fc80d8857158eb18a399da9ee.tar.zst gsoc2013-evolution-85fac8778261ce1fc80d8857158eb18a399da9ee.zip |
Remove e_shell_hide_widgets_for_express_mode().
No longer needed.
Diffstat (limited to 'shell/e-shell-utils.c')
-rw-r--r-- | shell/e-shell-utils.c | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c index f289b36e01..655f785ba0 100644 --- a/shell/e-shell-utils.c +++ b/shell/e-shell-utils.c @@ -259,57 +259,3 @@ e_shell_utils_import_uris (EShell *shell, return g_strv_length ((gchar **) uris); } -/** - * e_shell_hide_widgets_for_express_mode: - * @shell: an #EShell - * @builder: a #GtkBuilder - * @widget_name: first widget name to hide - * @...: %NULL-terminated list of additional widget names to hide - * - * If Evolution is running in Express mode (i.e. if the specified @shell is - * in Express mode), then this function will hide a list of widgets, based - * on their specified names. The list of names must be %NULL-terminated, - * and each element of that list must be the name of a widget present in - * @builder. Those widgets will then get hidden. - * - * This can be used to simplify preference dialogs and such in an easy - * fashion, for use in Express mode. - * - * If Evolution is not running in Express mode, this function does nothing. - */ -void -e_shell_hide_widgets_for_express_mode (EShell *shell, - GtkBuilder *builder, - const gchar *widget_name, - ...) -{ - va_list args; - - g_return_if_fail (E_IS_SHELL (shell)); - g_return_if_fail (GTK_IS_BUILDER (builder)); - g_return_if_fail (widget_name != NULL); - - if (!e_shell_get_express_mode (shell)) - return; - - va_start (args, widget_name); - - while (widget_name != NULL) { - GObject *object; - - object = gtk_builder_get_object (builder, widget_name); - if (!GTK_IS_WIDGET (object)) { - g_error ( - "Object '%s' was not found in the builder " - "file, or it is not a GtkWidget", widget_name); - g_assert_not_reached (); - } - - gtk_widget_hide (GTK_WIDGET (object)); - - widget_name = va_arg (args, const gchar *); - } - - va_end (args); -} - |