Friday, 30 December 2011

[kdelibs/KDE/4.8] kjs: Add missing include.

Git commit d1fe2074b4fbc8253a4533a7e6be24b4f5b20b8b by Raphael Kubo da Costa.
Committed on 31/12/2011 at 02:25.
Pushed by rkcosta into branch 'KDE/4.8'.

Add missing include.

Casting from KJS::JSGlobalObject* to KJS::JSObject* failed with clang
because it missed the definition of JSGlobalObject.

M +1 -0 kjs/lookup.h

http://commits.kde.org/kdelibs/d1fe2074b4fbc8253a4533a7e6be24b4f5b20b8b

diff --git a/kjs/lookup.h b/kjs/lookup.h
index 6fabc8f..00622d0 100644
--- a/kjs/lookup.h
+++ b/kjs/lookup.h
@@ -23,6 +23,7 @@
#ifndef _KJSLOOKUP_H_
#define _KJSLOOKUP_H_

+#include "JSVariableObject.h"
#include "interpreter.h"
#include "identifier.h"
#include "object.h"

0 comments: