mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Linux: Fix type mismatch compile error.
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/2062@1797 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -243,7 +243,7 @@ void ClientHandler::OnTitleChange(CefRefPtr<CefBrowser> browser,
|
|||||||
|
|
||||||
// Retrieve the X11 window handle for the browser.
|
// Retrieve the X11 window handle for the browser.
|
||||||
::Window window = browser->GetHost()->GetWindowHandle();
|
::Window window = browser->GetHost()->GetWindowHandle();
|
||||||
DCHECK_NE(window, kNullWindowHandle);
|
DCHECK_NE(window, NULL);
|
||||||
|
|
||||||
// Retrieve the atoms required by the below XChangeProperty call.
|
// Retrieve the atoms required by the below XChangeProperty call.
|
||||||
const char* kAtoms[] = {
|
const char* kAtoms[] = {
|
||||||
|
Reference in New Issue
Block a user