From 837c3a0df178a682f36f57b1b3873685268be52d Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 14 Feb 2016 13:40:07 -0800 Subject: [PATCH] remove unused function --- src/common/imagpng.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/common/imagpng.cpp b/src/common/imagpng.cpp index b33539bb3a..11b63b58fa 100644 --- a/src/common/imagpng.cpp +++ b/src/common/imagpng.cpp @@ -52,13 +52,6 @@ bool IsOpaque(unsigned char a) return a == 0xff; } -// is the pixel with this value of alpha a fully transparent one? -static inline -bool IsTransparent(unsigned char a) -{ - return !a; -} - // ============================================================================ // wxPNGHandler implementation // ============================================================================