diff --git a/plasma/private/effects/blur.cpp b/plasma/private/effects/blur.cpp index 7135e9ca..66fc8e22 100644 --- a/plasma/private/effects/blur.cpp +++ b/plasma/private/effects/blur.cpp @@ -139,16 +139,4 @@ static inline void blurcol(QImage &im, int col, int alpha) } } -template -inline const T &qClamp(const T &x, const T &low, const T &high) -{ - if (x < low) { - return low; - } else if (x > high) { - return high; - } else { - return x; - } -} - #endif