Displaying 2 results from an estimated 2 matches for "usesemaphore".
2008 Apr 29
3
[PATCH] browser_plugin - kate support, build fixes, and misc
...ClickCallback(NULL)
#if defined(XP_MACOSX)
,
mOutputCleared(FALSE)
@@ -1037,7 +1175,9 @@
if (mMouseButtonDown) {
mMouseButtonDown = FALSE;
- mMouseClickCallback->Call();
+ if (this->mMouseClickCallback != NULL) {
+ mMouseClickCallback->Call();
+ }
}
if (useSemaphore) {
> > - avoid the input widget in test.html firing hotkey'd functions
>
> is this specific to the Kate changes? I noticed that it adds a focus
> tracking variable, but that seems to be used by some of the Kate UI
> also so I'm not sure if it's a general bugfix or...
2008 Apr 28
3
[PATCH] browser_plugin - kate support, build fixes, and misc
Hi,
this patch adds:
- kate support (what else) - this bumps the Javascript API to 1.1
- a few build fixes (note that the adding of -L/usr/X11/lib -lX11
looks suspect to me, that shouldn't be needed, so you may want to
leave it out if you think so as well - it's odd as X11 using programs
do configure fine on that box)
- bad pointer dereference fix (mouse callback)
- avoid the input