[evince] [libview] Remove unneeded redundant code
- From: Carlos Garcia Campos <carlosgc src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [evince] [libview] Remove unneeded redundant code
- Date: Tue, 1 Dec 2009 19:40:46 +0000 (UTC)
commit cc46f6d515d9639f4fbca00118fb2c99c2a3bcd7
Author: Carlos Garcia Campos <carlosgc gnome org>
Date: Tue Dec 1 20:17:29 2009 +0100
[libview] Remove unneeded redundant code
libview/ev-view.c | 23 ++---------------------
1 files changed, 2 insertions(+), 21 deletions(-)
---
diff --git a/libview/ev-view.c b/libview/ev-view.c
index 97ff001..f039c0e 100644
--- a/libview/ev-view.c
+++ b/libview/ev-view.c
@@ -5658,14 +5658,7 @@ zoom_for_size_fit_width (gdouble doc_width,
int target_width,
int target_height)
{
- double scale;
-
- scale = (double)target_width / doc_width;
-
- if (doc_height * scale > target_height)
- scale = (double)target_width / doc_width;
-
- return scale;
+ return (double)target_width / doc_width;
}
static double
@@ -5674,14 +5667,7 @@ zoom_for_size_fit_height (gdouble doc_width,
int target_width,
int target_height)
{
- double scale;
-
- scale = (double)target_height / doc_height;
-
- if (doc_width * scale > target_width)
- scale = (double)target_height / doc_height;
-
- return scale;
+ return (double)target_height / doc_height;
}
static double
@@ -5696,11 +5682,6 @@ zoom_for_size_best_fit (gdouble doc_width,
w_scale = (double)target_width / doc_width;
h_scale = (double)target_height / doc_height;
- if (doc_height * w_scale > target_height)
- w_scale = (double)target_width / doc_width;
- if (doc_width * h_scale > target_width)
- h_scale = (double)target_height / doc_height;
-
return MIN (w_scale, h_scale);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]