Changeset 116774 in webkit


Ignore:
Timestamp:
May 11, 2012 8:51:48 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][DRT] Input Attribute Placeholder RefTests failing
https://bugs.webkit.org/show_bug.cgi?id=85603

Unreviewed, build fix for EFL.

Patch by Dominik Röttsches <dominik.rottsches@intel.com> on 2012-05-11

  • platform/efl/RenderThemeEfl.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116771 r116774  
     12012-05-11  Dominik Röttsches  <dominik.rottsches@intel.com>
     2
     3        [EFL][DRT] Input Attribute Placeholder RefTests failing
     4        https://bugs.webkit.org/show_bug.cgi?id=85603
     5
     6        Unreviewed, build fix for EFL.
     7
     8        * platform/efl/RenderThemeEfl.cpp:
     9
    1102012-05-11  Alexei Filippov  <alexeif@chromium.org>
    211
  • trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp

    r116761 r116774  
    420420
    421421    that->setFocusRingColor(fr, fg, fb, fa);
    422 }
    423 
    424 static void renderThemeEflColorClassButtonText(void* data, Evas_Object* object, const char* signal, const char* source)
    425 {
    426     RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
    427     int fr, fg, fb, fa, br, bg, bb, ba;
    428 
    429     if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
    430         return;
    431 
    432     that->setButtonTextColor(fr, fg, fb, fa, br, bg, bb, ba);
    433 }
    434 
    435 static void renderThemeEflColorClassComboText(void* data, Evas_Object* object, const char* signal, const char* source)
    436 {
    437     RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
    438     int fr, fg, fb, fa, br, bg, bb, ba;
    439 
    440     if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
    441         return;
    442 
    443     that->setComboTextColor(fr, fg, fb, fa, br, bg, bb, ba);
    444 }
    445 
    446 static void renderThemeEflColorClassEntryText(void* data, Evas_Object* object, const char* signal, const char* source)
    447 {
    448     RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
    449     int fr, fg, fb, fa, br, bg, bb, ba;
    450 
    451     if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
    452         return;
    453 
    454     that->setEntryTextColor(fr, fg, fb, fa, br, bg, bb, ba);
    455 }
    456 
    457 static void renderThemeEflColorClassSearchText(void* data, Evas_Object* object, const char* signal, const char* source)
    458 {
    459     RenderThemeEfl* that = static_cast<RenderThemeEfl *>(data);
    460     int fr, fg, fb, fa, br, bg, bb, ba;
    461     if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
    462         return;
    463 
    464     that->setSearchTextColor(fr, fg, fb, fa, br, bg, bb, ba);
    465422}
    466423
Note: See TracChangeset for help on using the changeset viewer.