From ebdd9d4f9986ba4e4c3e4e35f8f6b9611e9b8190 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Sun, 27 Apr 2008 21:49:09 +0000 Subject: [PATCH] Fix uninitialized variable. svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=801838 --- svg.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svg.cpp b/svg.cpp index 5c8af9a9e..a50a951da 100644 --- a/svg.cpp +++ b/svg.cpp @@ -67,7 +67,8 @@ class Svg::Private : q(svg), renderer(0), multipleImages(false), - themed(false) + themed(false), + applyColors(false) { }