aboutsummaryrefslogtreecommitdiffstats
path: root/progress_dlg.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-08-28 22:28:43 +0000
committerGuy Harris <guy@alum.mit.edu>2002-08-28 22:28:43 +0000
commit25c3026203a25c6bb2c9523ea4fcdbbec84351e9 (patch)
treeee56024f439dcdabbc1a66916e05b39361362be2 /progress_dlg.h
parent7c4176d8688d6642026d3d322570663c9655c7db (diff)
Make the "start_time" argument to "delayed_create_progress_dlg()" a
pointer to const, to emphasize that it does *not* modify the time pointed to by the argument. Make the initial delay for delayed progress bars 1/10 second rather than 1/2 second, as a 1/2 second delay is noticeable, especially when loading a file for the first time (as the main window looks a bit blank). Even at 1/10 second you can still notice it, but it's not *as* noticeable. svn path=/trunk/; revision=6118
Diffstat (limited to 'progress_dlg.h')
-rw-r--r--progress_dlg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/progress_dlg.h b/progress_dlg.h
index 33b26e0e45..a2dc6d9fb7 100644
--- a/progress_dlg.h
+++ b/progress_dlg.h
@@ -1,7 +1,7 @@
/* progress_dlg.h
* Definitions for progress dialog box routines
*
- * $Id: progress_dlg.h,v 1.4 2002/08/28 21:00:41 jmayer Exp $
+ * $Id: progress_dlg.h,v 1.5 2002/08/28 22:28:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -58,7 +58,7 @@ progdlg_t *create_progress_dlg(const gchar *task_title, const gchar *item_title,
*/
progdlg_t *
delayed_create_progress_dlg(const gchar *task_title, const gchar *item_title,
- const gchar *stop_title, gboolean *stop_flag, GTimeVal *start_time,
+ const gchar *stop_title, gboolean *stop_flag, const GTimeVal *start_time,
gfloat progress);
/*