Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
2010-07-19 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Antonio Gomes. [EFL] Add ifdef to compile code just on presence of Ecore_X https://bugs.webkit.org/show_bug.cgi?id=42567 No new tests since there's no new functionality. * platform/efl/WidgetEfl.cpp: (WebCore::Widget::setEvasObject): Add #ifdef HAVE_ECORE_X to it. Canonical link: https://commits.webkit.org/54505@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@63665 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
15 additions
and 0 deletions.
- +13 −0 WebCore/ChangeLog
- +2 −0 WebCore/platform/efl/WidgetEfl.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -347,7 +347,9 @@ void Widget::setEvasObject(Evas_Object *o) | ||
m_data->m_evasObject = o; | ||
if (!o) { | ||
m_data->m_evas = 0; | ||
#ifdef HAVE_ECORE_X | ||
m_data->m_isUsingEcoreX = false; | ||
#endif | ||
return; | ||
} | ||
|
||