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 // ============================================================================