diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2006-01-30 19:49:53 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2006-01-30 19:49:53 +0800 |
commit | 1e5de972e60c9e693a87c0c5e899c64f930d75cb (patch) | |
tree | 32acc9f294047102ec640b8252d136ca18685a27 /shell/e-shell-window.c | |
parent | fba1b81006ff538162950505a8349c9ef6a8c6a9 (diff) | |
download | gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.gz gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.tar.zst gsoc2013-evolution-1e5de972e60c9e693a87c0c5e899c64f930d75cb.zip |
Remove unused code and fix format specifiers in some cases.
2006-01-29 Kjartan Maraas <kmaraas@gnome.org>
* e-corba-config-page.c: (e_corba_config_page_class_init):
* e-shell-folder-title-bar.c: (e_shell_folder_title_bar_construct):
* e-shell-window.c: (init_view):
* e-shell.c: (detect_version), (e_shell_construct), (e_shell_new),
(e_shell_attempt_upgrade), (e_shell_create_window),
(e_shell_save_settings):
* main.c: (idle_cb):
Remove unused code and fix format specifiers in some cases.
svn path=/trunk/; revision=31367
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 41540126a5..2d7d6aaba4 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -214,7 +214,6 @@ init_view (EShellWindow *window, CORBA_Environment ev; int sidebar_notebook_page_num; int view_notebook_page_num; - int statusbar_notebook_page_num; g_assert (view->view_widget == NULL); g_assert (view->sidebar_widget == NULL); @@ -280,7 +279,6 @@ init_view (EShellWindow *window, sidebar_notebook_page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->sidebar_notebook), view->sidebar_widget); view_notebook_page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->view_notebook), view->view_widget); - statusbar_notebook_page_num = gtk_notebook_page_num (GTK_NOTEBOOK (priv->view_notebook), view->statusbar_widget); /* Since we always add a view page and a sidebar page at the same time... */ g_assert (sidebar_notebook_page_num == view_notebook_page_num); |