mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Remove the generated CEF project files from source control. Run cef_create_projects.bat in your working copy to generate them locally.
libcef: - Use LPCWSTR instead of LPCTSTR in cef_win.h (issue #58). - Fix return of document text in CefBrowserImpl::GetText() (issue #59). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@59 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -179,7 +179,7 @@ std::wstring CefBrowserImpl::GetText(CefRefPtr<CefFrame> frame)
|
||||
// Retrieve the document text directly
|
||||
WebKit::WebFrame* web_frame = GetWebFrame(frame);
|
||||
if(web_frame)
|
||||
webkit_glue::DumpDocumentText(web_frame);
|
||||
return webkit_glue::DumpDocumentText(web_frame);
|
||||
return std::wstring();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user