From b8815bbae69a059a7f952956ebb4ca5a890890c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B6glund?= Date: Tue, 25 May 2010 16:56:23 +0000 Subject: [PATCH] Store the custom data in a QHash instead of a QMap, since QHash should be faster. svn path=/trunk/KDE/kdebase/workspace/; revision=1130551 --- effects.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/effects.h b/effects.h index 4eb8ac67a8..29133d7788 100644 --- a/effects.h +++ b/effects.h @@ -26,7 +26,7 @@ along with this program. If not, see . #include "scene.h" #include -#include +#include class KService; @@ -294,7 +294,7 @@ class EffectWindowImpl : public EffectWindow private: Toplevel* toplevel; Scene::Window* sw; // This one is used only during paint pass. - QMap dataMap; + QHash dataMap; }; class EffectWindowGroupImpl