From 81d4b984a4b88bb8ffcaddebe62d21adb456fa75 Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Mon, 25 May 2015 16:28:54 +0100 Subject: [PATCH] K_GLOBAL_STATIC -> Q_GLOBAL_STATIC --- core/script/kjs_field.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/script/kjs_field.cpp b/core/script/kjs_field.cpp index 2f95b9aed..b035441b1 100644 --- a/core/script/kjs_field.cpp +++ b/core/script/kjs_field.cpp @@ -17,7 +17,6 @@ #include #include -#include #include "../debug_p.h" #include "../document_p.h" @@ -29,7 +28,7 @@ using namespace Okular; static KJSPrototype *g_fieldProto; typedef QHash< FormField *, KJSObject > FormCache; -K_GLOBAL_STATIC( FormCache, g_fieldCache ) +Q_GLOBAL_STATIC( FormCache, g_fieldCache ) // Field.doc static KJSObject fieldGetDoc( KJSContext *context, void * )