aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/compare_stat.c
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-20 23:00:23 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-20 23:00:23 +0000
commit5f5b116d1c830cb2471d0aa37aeb6ed67b7ade35 (patch)
tree6c182308ce349f15c92b8fd296644b3daa0d85e2 /gtk/compare_stat.c
parentb0a21eff4588f87b87ddf7633516cf2d014e43d3 (diff)
Squelch GTK runtime warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32256 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/compare_stat.c')
-rw-r--r--gtk/compare_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/compare_stat.c b/gtk/compare_stat.c
index 5ef9340e16..83afe723c5 100644
--- a/gtk/compare_stat.c
+++ b/gtk/compare_stat.c
@@ -932,8 +932,8 @@ gtk_comparestat_cb(GtkWidget *w _U_, gpointer d _U_)
/* create adjustments. Spans between 0 and 100, starting at 0 and
* moves in increments of 1 */
- start_integer=GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 1.0, 5.0, 5.0));
- stop_integer=GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 1.0, 5.0, 5.0));
+ start_integer=GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 1.0, 5.0, 0.0));
+ stop_integer=GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 1.0, 5.0, 0.0));
/* create spin button. Not displaying decimal */
spin_start_int=gtk_spin_button_new(start_integer, 1.0, 0);
@@ -999,7 +999,7 @@ gtk_comparestat_cb(GtkWidget *w _U_, gpointer d _U_)
/* create adjustments. Spans between 0 and 100, starting at 0 and
* moves in increments of 1 */
- var_integer=GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 1.0, 5.0, 5.0));
+ var_integer=GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 1.0, 5.0, 0.0));
/* create spin button. Not displaying decimal */
spin_var_int=gtk_spin_button_new(var_integer, 0.0, 2);