From: Simon Hausmann Date: Fri, 8 Feb 2013 08:45:37 +0000 (+0100) Subject: Fix link error on Windows X-Git-Tag: upstream/5.2.1~669^2~659^2~285 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=223e6207171cd0e69b082306bedad548e9756b7a;p=platform%2Fupstream%2Fqtdeclarative.git Fix link error on Windows __qmljs_create_exception_handler was declared without export but defined with export. Change-Id: I998d33d64eb8acfaba451582e4c0082685f2b42a Reviewed-by: Lars Knoll --- diff --git a/src/v4/qmljs_runtime.h b/src/v4/qmljs_runtime.h index 27ffff8..2742692 100644 --- a/src/v4/qmljs_runtime.h +++ b/src/v4/qmljs_runtime.h @@ -208,7 +208,7 @@ Value __qmljs_delete_name(ExecutionContext *ctx, String *name); void __qmljs_throw(Value value, ExecutionContext *context); // actually returns a jmp_buf * -void *__qmljs_create_exception_handler(ExecutionContext *context); +Q_V4_EXPORT void *__qmljs_create_exception_handler(ExecutionContext *context); void __qmljs_delete_exception_handler(ExecutionContext *context); Value __qmljs_get_exception(ExecutionContext *context);