aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-06-23 17:43:29 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-06-23 17:43:29 +0800
commite35f33a5921cd61c79f8f50f2e91fcedbb465af1 (patch)
treeb21a9b98b8b74f8328e6a943773d3291c5c2b229 /shell
parent86027d9cf0929da9aa6bbe9e3213a75f9ea36708 (diff)
downloadgsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.tar
gsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.tar.gz
gsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.tar.bz2
gsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.tar.lz
gsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.tar.xz
gsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.tar.zst
gsoc2013-evolution-e35f33a5921cd61c79f8f50f2e91fcedbb465af1.zip
Remove some useless `#if 0'ed code.
svn path=/trunk/; revision=10442
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog4
-rw-r--r--shell/e-shell-view.c68
2 files changed, 4 insertions, 68 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index eccd3cf70d..2a9d3ce796 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,9 @@
2001-06-23 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell-view.c: Get rid of some `#if 0'ed code.
+
+2001-06-23 Ettore Perazzoli <ettore@ximian.com>
+
* e-shell-view.c (corba_interface_set_message_cb): Replaced with
an empty stub, as the "set_message" method is going to be
deprecated.
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index cdff06a444..e929c122ef 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1010,74 +1010,6 @@ init (EShellView *shell_view)
}
-#if 0
-/* Progress bar handling. */
-
-#define PROGRESS_BAR_TIMEOUT 80
-
-static int
-progress_bar_timeout_cb (void *data)
-{
- EShellView *shell_view;
- EShellViewPrivate *priv;
- GtkWidget *progress_bar;
-
- shell_view = E_SHELL_VIEW (data);
- priv = shell_view->priv;
- progress_bar = priv->progress_bar;
-
- priv->progress_bar_value = ! priv->progress_bar_value;
- gtk_progress_set_value (GTK_PROGRESS (progress_bar), priv->progress_bar_value);
-
- return TRUE;
-}
-
-static void
-start_progress_bar (EShellView *shell_view)
-{
- EShellViewPrivate *priv;
- GtkProgress *progress;
-
- priv = shell_view->priv;
-
- progress = GTK_PROGRESS (priv->progress_bar);
-
- if (!GTK_WIDGET_REALIZED (progress))
- return;
-
- if (priv->progress_bar_timeout_id != 0)
- return;
-
- priv->progress_bar_timeout_id = gtk_timeout_add (PROGRESS_BAR_TIMEOUT, progress_bar_timeout_cb, shell_view);
-
- gtk_progress_set_activity_mode (progress, TRUE);
- gtk_progress_set_value (progress, priv->progress_bar_value);
-}
-
-static void
-stop_progress_bar (EShellView *shell_view)
-{
- EShellViewPrivate *priv;
- GtkWidget *progress_bar;
-
- priv = shell_view->priv;
- progress_bar = priv->progress_bar;
-
- if (priv->progress_bar_timeout_id != 0) {
- gtk_timeout_remove (priv->progress_bar_timeout_id);
- priv->progress_bar_timeout_id = 0;
- }
-
- if (!GTK_WIDGET_REALIZED (progress_bar))
- return;
-
- gtk_progress_set_activity_mode (GTK_PROGRESS (progress_bar), FALSE);
- gtk_progress_set_value (GTK_PROGRESS (progress_bar), 0);
-}
-
-#endif
-
-
/* EvolutionShellView interface callbacks. */
static void