RESOLVED FIXED 104677
[Qt] Fix the inspector not showing up on Windows
https://bugs.webkit.org/show_bug.cgi?id=104677
Summary [Qt] Fix the inspector not showing up on Windows
Jocelyn Turcotte
Reported 2012-12-11 08:22:07 PST
[Qt] Fix the inspector not showing up on Windows
Attachments
Patch (2.89 KB, patch)
2012-12-11 08:26 PST, Jocelyn Turcotte
hausmann: review+
Jocelyn Turcotte
Comment 1 2012-12-11 08:26:39 PST
Simon Hausmann
Comment 2 2012-12-11 23:58:40 PST
Comment on attachment 178811 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=178811&action=review r=me with a small change :) > Source/api.pri:24 > + include(WebCore/WebCore.pri) I think if you move this whole block until _after_ the load(webkit_modules) part in api.pri, then you can remove the inclusion of WebCore.pri and therefore avoid it being included twice (webkit_modules will also include it due to WEBKIT += webcore) (WebCore.pri is designed to be included only once, as it does += on LIBS and other variables instead of *=)
Jocelyn Turcotte
Comment 3 2012-12-12 02:11:20 PST
(In reply to comment #2) > I think if you move this whole block until _after_ the load(webkit_modules) part in api.pri, then you can remove the inclusion of WebCore.pri and therefore avoid it being included twice (webkit_modules will also include it due to WEBKIT += webcore) > > (WebCore.pri is designed to be included only once, as it does += on LIBS and other variables instead of *=) It does work if I move it, pretty good point, thanks.
Jocelyn Turcotte
Comment 4 2012-12-12 02:14:13 PST
Note You need to log in before you can comment on or make changes to this bug.