File xpp-1.5-all_options_after_slider.patch of Package xpp
--- xpp-1.5/xpp.cxx.orig 2008-07-21 20:36:47.000000000 +0200
+++ xpp-1.5/xpp.cxx 2008-07-21 20:37:37.000000000 +0200
@@ -1723,7 +1723,7 @@
if (special_option->type == 0) {
// option is integer, make sure that only integer values
// can be adjusted
- k = (int)(special_option->max) - (int)(special_option->min);
+ int k = (int)(special_option->max) - (int)(special_option->min);
// Max. 260 steps on full length of scrollbar (1 step >= 1
// pixel)
if (k <= 260) {