summaryrefslogtreecommitdiff
path: root/splash/SplashScreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'splash/SplashScreen.h')
-rw-r--r--splash/SplashScreen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/splash/SplashScreen.h b/splash/SplashScreen.h
index c3bfe2ef..9d4c880a 100644
--- a/splash/SplashScreen.h
+++ b/splash/SplashScreen.h
@@ -54,7 +54,7 @@ public:
// Returns true if value is above the white threshold or below the
// black threshold, i.e., if the corresponding halftone will be
// solid white or black.
- GBool isStatic(Guchar value) { if (mat == nullptr) createMatrix(); return value < minVal || value >= maxVal; }
+ bool isStatic(Guchar value) { if (mat == nullptr) createMatrix(); return value < minVal || value >= maxVal; }
private:
void createMatrix();