diff options
author | Steve Block <steveblock@google.com> | 2010-09-29 17:32:26 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2010-09-29 17:35:08 +0100 |
commit | 68513a70bcd92384395513322f1b801e7bf9c729 (patch) | |
tree | 161b50f75a5921d61731bb25e730005994fcec85 /WebCore/plugins/gtk | |
parent | fd5c6425ce58eb75211be7718d5dee960842a37e (diff) | |
download | external_webkit-68513a70bcd92384395513322f1b801e7bf9c729.zip external_webkit-68513a70bcd92384395513322f1b801e7bf9c729.tar.gz external_webkit-68513a70bcd92384395513322f1b801e7bf9c729.tar.bz2 |
Merge WebKit at r67908: Initial merge by Git
Change-Id: I43a553e7b3299b28cb6ee8aa035ed70fe342b972
Diffstat (limited to 'WebCore/plugins/gtk')
-rw-r--r-- | WebCore/plugins/gtk/PluginViewGtk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/plugins/gtk/PluginViewGtk.cpp b/WebCore/plugins/gtk/PluginViewGtk.cpp index 6d631e3..bee7821 100644 --- a/WebCore/plugins/gtk/PluginViewGtk.cpp +++ b/WebCore/plugins/gtk/PluginViewGtk.cpp @@ -143,7 +143,7 @@ void PluginView::updatePluginWidget() m_drawable = XCreatePixmap(GDK_DISPLAY(), getRootWindow(m_parentFrame.get()), m_windowRect.width(), m_windowRect.height(), ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth); - XSync(GDK_DISPLAY(), False); // make sure that the server knows about the Drawable + XSync(GDK_DISPLAY(), false); // make sure that the server knows about the Drawable } #endif @@ -265,7 +265,7 @@ void PluginView::paint(GraphicsContext* context, const IntRect& rect) dispatchNPEvent(xevent); if (syncX) - XSync(m_pluginDisplay, False); // sync changes by plugin + XSync(m_pluginDisplay, false); // sync changes by plugin cairo_t* cr = context->platformContext(); cairo_save(cr); |