⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185740 in webkit


Ignore:
Timestamp:
Jun 19, 2015, 12:58:54 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Fix the minibrowser after r185725
https://bugs.webkit.org/show_bug.cgi?id=146135

Patch by Hunseop Jeong <Hunseop Jeong> on 2015-06-19
Reviewed by Gyuyoung Kim.

Removed the HAVE_ECORE_X guard in MiniBrowser because it is an unnecessary guard
for the elm_config_accel_preference_set() to set the config of acceleration preference.

  • MiniBrowser/efl/main.c:

(elm_main): Deleted the HAVE_ECORE_X guard.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r185732 r185740  
     12015-06-19  Hunseop Jeong  <hs85.jeong@samsung.com>
     2
     3        [EFL] Fix the minibrowser after r185725
     4        https://bugs.webkit.org/show_bug.cgi?id=146135
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Removed the HAVE_ECORE_X guard in MiniBrowser because it is an unnecessary guard
     9        for the elm_config_accel_preference_set() to set the config of acceleration preference.
     10
     11        * MiniBrowser/efl/main.c:
     12        (elm_main): Deleted the HAVE_ECORE_X guard.
     13
    1142015-06-18  Dewei Zhu  <dewei_zhu@apple.com>
    215
  • trunk/Tools/MiniBrowser/efl/main.c

    r185701 r185740  
    24382438    if (evas_engine_name)
    24392439        elm_config_accel_preference_set(evas_engine_name);
    2440 #if defined(HAVE_ECORE_X)
    24412440    else {
    24422441        evas_engine_name = "opengl";
    24432442        elm_config_accel_preference_set(evas_engine_name);
    24442443    }
    2445 #endif
    24462444
    24472445    Ewk_Context *context = ewk_context_default_get();
Note: See TracChangeset for help on using the changeset viewer.