[poppler] poppler/SplashOutputDev.h

Albert Astals Cid aacid at kemper.freedesktop.org
Mon Jan 8 17:45:55 UTC 2018


 poppler/SplashOutputDev.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1ae5d91467663576a5d11add69fa72a2d108f0ad
Author: Albert Astals Cid <aacid at kde.org>
Date:   Mon Jan 8 18:45:43 2018 +0100

    Remove useless return in a void function

diff --git a/poppler/SplashOutputDev.h b/poppler/SplashOutputDev.h
index 05b7e943..89655d66 100644
--- a/poppler/SplashOutputDev.h
+++ b/poppler/SplashOutputDev.h
@@ -20,7 +20,7 @@
 // Copyright (C) 2011 Andreas Hartmetz <ahartmetz at gmail.com>
 // Copyright (C) 2011 Andrea Canciani <ranma42 at gmail.com>
 // Copyright (C) 2011, 2017 Adrian Johnson <ajohnson at redneon.com>
-// Copyright (C) 2012, 2015 Albert Astals Cid <aacid at kde.org>
+// Copyright (C) 2012, 2015, 2018 Albert Astals Cid <aacid at kde.org>
 // Copyright (C) 2015, 2016 William Bader <williambader at hotmail.com>
 //
 // To see a description of the changes please see the Changelog file that
@@ -154,7 +154,7 @@ public:
    void getTriangle(int i, double *x0, double *y0, double *color0,
                             double *x1, double *y1, double *color1,
                             double *x2, double *y2, double *color2) override
-  { return shading->getTriangle(i, x0, y0, color0, x1, y1, color1, x2, y2, color2); }
+  { shading->getTriangle(i, x0, y0, color0, x1, y1, color1, x2, y2, color2); }
 
   void getParameterizedColor(double t, SplashColorMode mode, SplashColorPtr c) override;
 


More information about the poppler mailing list