]> www.fi.muni.cz Git - evince.git/commitdiff
[libview] Remove unneeded redundant code
authorCarlos Garcia Campos <carlosgc@gnome.org>
Tue, 1 Dec 2009 19:17:29 +0000 (20:17 +0100)
committerCarlos Garcia Campos <carlosgc@gnome.org>
Tue, 1 Dec 2009 19:17:29 +0000 (20:17 +0100)
libview/ev-view.c

index 97ff001329284d5cc066e8a8883ceb43a5d1f893..f039c0e571eb5c753b956217e757b5737f070aa9 100644 (file)
@@ -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);
 }