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