Selection => selection
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17763 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
7d1e1e9f07
commit
7f0858ae68
@ -4210,7 +4210,7 @@ bool
|
||||
BTextView::GetProperty(BMessage *specifier, int32 form, const char *property, BMessage *reply)
|
||||
{
|
||||
CALLED();
|
||||
if (strcmp(property, "Selection") == 0) {
|
||||
if (strcmp(property, "selection") == 0) {
|
||||
reply->what = B_REPLY;
|
||||
reply->AddInt32("result", fSelStart);
|
||||
reply->AddInt32("result", fSelEnd);
|
||||
@ -4245,7 +4245,7 @@ bool
|
||||
BTextView::SetProperty(BMessage *specifier, int32 form, const char *property, BMessage *reply)
|
||||
{
|
||||
CALLED();
|
||||
if (strcmp(property, "Selection") == 0) {
|
||||
if (strcmp(property, "selection") == 0) {
|
||||
int32 index, range;
|
||||
|
||||
specifier->FindInt32("index", &index);
|
||||
|
Loading…
Reference in New Issue
Block a user