diff options
author | Julien BLACHE <jblache@debian.org> | 2007-02-27 22:22:40 +0100 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2014-10-03 14:05:34 +0000 |
commit | 4d8384e7b116e3eb11cc3df9151c8554dbca95fc (patch) | |
tree | f049f1240de8a8a971a621a4a3891d5eab2839a1 /debian/patches/12_pbar_fixes.dpatch | |
parent | 92f35807f68b30405639d4e0a95f748b6bdb793f (diff) | |
parent | 129ed4b29e21fdb8bda3bee89c3e5d8cca6ba749 (diff) |
Imported Debian patch 0.993-1debian/0.993-1
Diffstat (limited to 'debian/patches/12_pbar_fixes.dpatch')
-rw-r--r-- | debian/patches/12_pbar_fixes.dpatch | 282 |
1 files changed, 0 insertions, 282 deletions
diff --git a/debian/patches/12_pbar_fixes.dpatch b/debian/patches/12_pbar_fixes.dpatch deleted file mode 100644 index 5149b27..0000000 --- a/debian/patches/12_pbar_fixes.dpatch +++ /dev/null @@ -1,282 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 12_pbar_fixes.dpatch by <jblache@debian.org> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Reduce the number of updates/redraws on the progress bars by rounding -## DP: the progress value. Patch by Joris van Rooij <jrrzz@il.fontys.nl>. - -@DPATCH@ -diff -urNad xsane-0.99+0.991~/src/xsane-save.c xsane-0.99+0.991/src/xsane-save.c ---- xsane-0.99+0.991~/src/xsane-save.c 2006-01-10 18:46:32.000000000 +0100 -+++ xsane-0.99+0.991/src/xsane-save.c 2007-08-24 11:18:28.915600727 +0200 -@@ -694,7 +694,7 @@ - bytes_sum += bytes; - } - -- gtk_progress_bar_update(progress_bar, (float) bytes_sum / size); /* update progress bar */ -+ gtk_progress_bar_update(progress_bar, round((float) bytes_sum / size * 100) / 100); /* update progress bar */ - - while (gtk_events_pending()) - { -@@ -849,7 +849,7 @@ - } - - -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); /* update progress bar */ -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); /* update progress bar */ - while (gtk_events_pending()) /* give gtk the chance to display the changes */ - { - gtk_main_iteration(); -@@ -951,7 +951,7 @@ - { - DBG(DBG_info2, "xsane_save_scaled_image: original line %d, new line %d\n", (int) y, y_new); - -- gtk_progress_bar_update(progress_bar, (float) y / original_image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / original_image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1135,7 +1135,7 @@ - - for (y = 0; y < new_image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1225,7 +1225,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - - while (gtk_events_pending()) - { -@@ -1418,7 +1418,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1627,7 +1627,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1769,7 +1769,7 @@ - - for (y = 0; y < pixel_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / pixel_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / pixel_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1826,7 +1826,7 @@ - - for (x=0; x<pixel_width; x++) - { -- gtk_progress_bar_update(progress_bar, (float) x / pixel_width); -+ gtk_progress_bar_update(progress_bar, round((float) x / pixel_width * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1880,7 +1880,7 @@ - - for (y = pixel_height-1; y >= 0; y--) - { -- gtk_progress_bar_update(progress_bar, (float) (pixel_height - y) / pixel_height); -+ gtk_progress_bar_update(progress_bar, round((float) (pixel_height - y) / pixel_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1939,7 +1939,7 @@ - - for (x = pixel_width-1; x >= 0; x--) - { -- gtk_progress_bar_update(progress_bar, (float) (pixel_width - x) / pixel_width); -+ gtk_progress_bar_update(progress_bar, round((float) (pixel_width - x) / pixel_width * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -1992,7 +1992,7 @@ - - for (y = 0; y < pixel_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / pixel_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / pixel_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -2051,7 +2051,7 @@ - - for (x = 0; x < pixel_width; x++) - { -- gtk_progress_bar_update(progress_bar, (float) x / pixel_width); -+ gtk_progress_bar_update(progress_bar, round((float) x / pixel_width * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -2105,7 +2105,7 @@ - - for (y = pixel_height-1; y >= 0; y--) - { -- gtk_progress_bar_update(progress_bar, (float) (pixel_height - y) / pixel_height); -+ gtk_progress_bar_update(progress_bar, round((float) (pixel_height - y) / pixel_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -2164,7 +2164,7 @@ - - for (x = pixel_width-1; x >= 0; x--) - { -- gtk_progress_bar_update(progress_bar, (float) (pixel_width - x) / pixel_width); -+ gtk_progress_bar_update(progress_bar, round((float) (pixel_width - x) / pixel_width * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -2767,7 +2767,8 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); -+ - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -2896,7 +2897,7 @@ - break; - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -2940,7 +2941,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -3562,7 +3563,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -3754,7 +3755,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -3899,7 +3900,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -4013,7 +4014,7 @@ - - for (y = 0; y < image_info->image_height; y++) - { -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -4083,7 +4084,7 @@ - - count = 0; - -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -4143,7 +4144,7 @@ - - count = 0; - -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -4178,7 +4179,7 @@ - fputc(val & 255, outfile); /* LSB */ - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -4235,7 +4236,7 @@ - fputc(val & 255, outfile); /* LSB */ - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info->image_height); -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info->image_height * 100) / 100); - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -5199,7 +5200,7 @@ - tile_offset = 0; - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info.image_height); /* update progress bar */ -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info.image_height * 100) / 100); /* update progress bar */ - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -5236,7 +5237,7 @@ - tile_offset = 0; - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info.image_height); /* update progress bar */ -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info.image_height * 100) / 100); /* update progress bar */ - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -5280,7 +5281,7 @@ - tile_offset = 0; - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info.image_height); /* update progress bar */ -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info.image_height * 100) / 100); /* update progress bar */ - while (gtk_events_pending()) - { - gtk_main_iteration(); -@@ -5328,7 +5329,7 @@ - tile_offset = 0; - } - -- gtk_progress_bar_update(progress_bar, (float) y / image_info.image_height); /* update progress bar */ -+ gtk_progress_bar_update(progress_bar, round((float) y / image_info.image_height * 100) / 100); /* update progress bar */ - while (gtk_events_pending()) - { - gtk_main_iteration(); |