aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-05-09 03:36:47 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-05-09 03:36:47 +0800
commitb352ae1f19ca558ba8fd61e0a277a2a9020406bf (patch)
tree86e007a4592351e6404042b09534e245b3bd5d08
parent38a69e37f28eaaf0aea485eb5872ca23eee9bab0 (diff)
downloadgsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.tar
gsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.tar.gz
gsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.tar.bz2
gsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.tar.lz
gsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.tar.xz
gsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.tar.zst
gsoc2013-evolution-b352ae1f19ca558ba8fd61e0a277a2a9020406bf.zip
[#36956] Remove the version number from the window title.
[#36956] * e-shell-view.c (update_for_current_uri): Remove the version number from the window title. [#42518] * e-shell-view.c (handle_current_folder_removed): Casefold the Inbox name only once, instead of once per iteration. Removed the spurious slash that was being passed in the path in the Inbox case and prevented it from working. Added missing slash in the path for the storage case. Casefold the path including the slash, since we compare against a string that does include the slash. (storage_set_removed_folder_callback): Remove the notebook page before calling handle_current_folder_removed(), instead of after; otherwise, the notebook page number we have might not be valid anymore. * e-shell-folder-creation-dialog.c (setup_dialog): Set the default response for the dialog to GTK_RESPONSE_OK. svn path=/trunk/; revision=21134
-rw-r--r--shell/ChangeLog21
-rw-r--r--shell/e-shell-folder-creation-dialog.c2
-rw-r--r--shell/e-shell-view.c33
3 files changed, 38 insertions, 18 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index fcef24e00a..eb5603f8ad 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,24 @@
+2003-05-08 Ettore Perazzoli <ettore@ximian.com>
+
+ [#36956]
+ * e-shell-view.c (update_for_current_uri): Remove the version
+ number from the window title.
+
+ [#42518]
+ * e-shell-view.c (handle_current_folder_removed): Casefold the
+ Inbox name only once, instead of once per iteration. Removed the
+ spurious slash that was being passed in the path in the Inbox case
+ and prevented it from working. Added missing slash in the path
+ for the storage case. Casefold the path including the slash,
+ since we compare against a string that does include the slash.
+ (storage_set_removed_folder_callback): Remove the notebook page
+ before calling handle_current_folder_removed(), instead of after;
+ otherwise, the notebook page number we have might not be valid
+ anymore.
+
+ * e-shell-folder-creation-dialog.c (setup_dialog): Set the default
+ response for the dialog to GTK_RESPONSE_OK.
+
2003-05-07 Ettore Perazzoli <ettore@ximian.com>
* e-shell-folder-commands.c (e_shell_command_add_to_shortcut_bar):
diff --git a/shell/e-shell-folder-creation-dialog.c b/shell/e-shell-folder-creation-dialog.c
index 8390423850..4f2afc819e 100644
--- a/shell/e-shell-folder-creation-dialog.c
+++ b/shell/e-shell-folder-creation-dialog.c
@@ -307,6 +307,8 @@ setup_dialog (GtkWidget *dialog,
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
gtk_window_set_title (GTK_WINDOW (dialog), _("Create New Folder"));
+ gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
+
gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), GTK_RESPONSE_OK, FALSE);
gtk_widget_show (dialog);
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index e3a4a1422e..e44a152601 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -468,6 +468,7 @@ find_inbox_in_storage (EShellView *shell_view,
EShellViewPrivate *priv;
EStorageSet *storage_set;
EStorage *storage;
+ char *casefold_i18n_inbox_name;
GList *subfolder_paths;
GList *p;
@@ -475,23 +476,22 @@ find_inbox_in_storage (EShellView *shell_view,
storage_set = e_shell_get_storage_set (priv->shell);
storage = e_storage_set_get_storage (storage_set, storage_name);
+ casefold_i18n_inbox_name = g_utf8_casefold (_("Inbox"), -1);
+
subfolder_paths = e_storage_get_subfolder_paths (storage, "/");
for (p = subfolder_paths; p != NULL; p = p->next) {
const char *path;
- char *casefold_i18n_inbox_name;
char *casefold_path;
path = (const char *) p->data;
- casefold_i18n_inbox_name = g_utf8_casefold (_("Inbox"), -1);
- casefold_path = g_utf8_casefold (path + 1, -1);
+ casefold_path = g_utf8_casefold (path, -1);
if (g_utf8_collate (casefold_path, "/inbox") == 0
- || g_utf8_collate (casefold_path + 1, _("Inbox")) == 0) {
+ || g_utf8_collate (casefold_path + 1, casefold_i18n_inbox_name) == 0) {
char *return_path;
- return_path = g_strconcat ("/", storage_name, "/", path,
- NULL);
+ return_path = g_strconcat ("/", storage_name, path, NULL);
e_free_string_list (subfolder_paths);
g_free (casefold_i18n_inbox_name);
@@ -499,10 +499,10 @@ find_inbox_in_storage (EShellView *shell_view,
return return_path;
}
- g_free (casefold_i18n_inbox_name);
g_free (casefold_path);
}
+ g_free (casefold_i18n_inbox_name);
e_free_string_list (subfolder_paths);
return NULL;
@@ -552,7 +552,7 @@ handle_current_folder_removed (EShellView *shell_view)
char *storage_uri;
/* No Inbox in this storage -- fallback to the storage. */
- storage_uri = g_strconcat (E_SHELL_URI_PREFIX, storage_name, NULL);
+ storage_uri = g_strconcat (E_SHELL_URI_PREFIX, "/", storage_name, NULL);
e_shell_view_display_uri (shell_view, storage_uri, TRUE);
g_free (storage_uri);
@@ -652,12 +652,6 @@ storage_set_removed_folder_callback (EStorageSet *storage_set,
page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->notebook), view->control);
- /* Check if it's the URI that we are currently displaying. */
- if (strncmp (priv->uri, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) == 0
- && strcmp (priv->uri + E_SHELL_URI_PREFIX_LEN, path) == 0) {
- handle_current_folder_removed (shell_view);
- }
-
bonobo_control_frame_control_deactivate (BONOBO_CONTROL_FRAME (bonobo_widget_get_control_frame (BONOBO_WIDGET (view->control))));
gtk_widget_destroy (view->control);
@@ -665,6 +659,12 @@ storage_set_removed_folder_callback (EStorageSet *storage_set,
view_destroy (view);
gtk_notebook_remove_page (GTK_NOTEBOOK (priv->notebook), page_num);
+
+ /* Check if it was the URI that was being displayed. */
+ if (strncmp (priv->uri, E_SHELL_URI_PREFIX, E_SHELL_URI_PREFIX_LEN) == 0
+ && strcmp (priv->uri + E_SHELL_URI_PREFIX_LEN, path) == 0) {
+ handle_current_folder_removed (shell_view);
+ }
}
@@ -2048,10 +2048,7 @@ update_for_current_uri (EShellView *shell_view)
else
title = g_strdup (folder_name);
- if (SUB_VERSION[0] == '\0')
- window_title = g_strdup_printf ("%s - Ximian Evolution %s", title, VERSION);
- else
- window_title = g_strdup_printf ("%s - Ximian Evolution %s [%s]", title, VERSION, SUB_VERSION);
+ window_title = g_strdup_printf ("%s - Ximian Evolution", title);
gtk_window_set_title (GTK_WINDOW (shell_view), window_title);