Changeset 88897 in webkit


Ignore:
Timestamp:
Jun 14, 2011 7:41:58 PM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

2011-06-14 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kent Tamura.

[EFL] Change color initialization with clear color constant
https://bugs.webkit.org/show_bug.cgi?id=62691

Some color values are initialized by rbg value. Color constant value is more clear than
rgb value.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r88896 r88897  
     12011-06-14  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [EFL] Change color initialization with clear color constant
     6        https://bugs.webkit.org/show_bug.cgi?id=62691
     7
     8        Some color values are initialized by rbg value. Color constant value is more clear than
     9        rgb value.
     10
     11        * platform/efl/RenderThemeEfl.cpp:
     12        (WebCore::RenderThemeEfl::RenderThemeEfl):
     13
    1142011-06-14  Julien Chaffraix  <jchaffraix@webkit.org>
    215
  • trunk/Source/WebCore/platform/efl/RenderThemeEfl.cpp

    r88788 r88897  
    686686    , m_page(page)
    687687    , m_activeSelectionBackgroundColor(0, 0, 255)
    688     , m_activeSelectionForegroundColor(255, 255, 255)
     688    , m_activeSelectionForegroundColor(Color::white)
    689689    , m_inactiveSelectionBackgroundColor(0, 0, 128)
    690690    , m_inactiveSelectionForegroundColor(200, 200, 200)
    691691    , m_focusRingColor(32, 32, 224, 224)
    692692    , m_buttonTextBackgroundColor(0, 0, 0, 0)
    693     , m_buttonTextForegroundColor(0, 0, 0)
     693    , m_buttonTextForegroundColor(Color::black)
    694694    , m_comboTextBackgroundColor(0, 0, 0, 0)
    695     , m_comboTextForegroundColor(0, 0, 0)
     695    , m_comboTextForegroundColor(Color::black)
    696696    , m_entryTextBackgroundColor(0, 0, 0, 0)
    697     , m_entryTextForegroundColor(0, 0, 0)
     697    , m_entryTextForegroundColor(Color::black)
    698698    , m_searchTextBackgroundColor(0, 0, 0, 0)
    699     , m_searchTextForegroundColor(0, 0, 0)
     699    , m_searchTextForegroundColor(Color::black)
    700700    , m_sliderThumbColor(Color::darkGray)
    701701#if ENABLE(VIDEO)
Note: See TracChangeset for help on using the changeset viewer.