[webkit-reviews] review denied: [Bug 63462] [EFL] Add ewk_frame_text_selection_type_get function : [Attachment 98929] second patch set

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 28 10:03:18 PDT 2011


Leandro Pereira <leandro at profusion.mobi> has denied Michal Pakula vel Rutka
<m.pakula at samsung.com>'s request for review:
Bug 63462: [EFL] Add ewk_frame_text_selection_type_get function
https://bugs.webkit.org/show_bug.cgi?id=63462

Attachment 98929: second patch set
https://bugs.webkit.org/attachment.cgi?id=98929&action=review

------- Additional Comments from Leandro Pereira <leandro at profusion.mobi>
View in context: https://bugs.webkit.org/attachment.cgi?id=98929&action=review

> Source/WebKit/efl/ChangeLog:9
> +	   This patch adds a method to obtain current WebCore::VisibleSelection

> +	   text selection type.

No need to say 'This patch'; just begin the sentence with 'Add a method to...'.


> Source/WebKit/efl/ewk/ewk_frame.cpp:1548
> +    case WebCore::VisibleSelection::NoSelection:

default:

> Source/WebKit/efl/ewk/ewk_frame.cpp:1552
> +    return EWK_TEXT_SELECTION_NONE;

Delete this line.

> Source/WebKit/efl/ewk/ewk_frame.h:162
> +enum _Ewk_Text_Selection_Type {
> +    EWK_TEXT_SELECTION_NONE,
> +    EWK_TEXT_SELECTION_CARET,
> +    EWK_TEXT_SELECTION_RANGE
> +};
> +typedef enum _Ewk_Text_Selection_Type Ewk_Text_Selection_Type;

typedef enum { ... } Ewk_Text_Selection_Type;


More information about the webkit-reviews mailing list