From 7f0858ae682729cdb4736f0f65199784f2938a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 7 Jun 2006 16:08:38 +0000 Subject: [PATCH] Selection => selection git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17763 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/interface/BTextView/TextView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kits/interface/BTextView/TextView.cpp b/src/kits/interface/BTextView/TextView.cpp index fd4b287464..d68326ae0e 100644 --- a/src/kits/interface/BTextView/TextView.cpp +++ b/src/kits/interface/BTextView/TextView.cpp @@ -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);