aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleTextBox.cpp
diff options
context:
space:
mode:
authorGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-30 11:30:01 +0000
committerGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-30 11:30:01 +0000
commit45369a33bb78b6b76fafd63b1334151368dc9e2a (patch)
tree0b255676bb9fd20e072697e989c7014d83507e36 /samplecode/SampleTextBox.cpp
parente8d29f5058153d56423a9d44f278b15e0cc88c9a (diff)
samplecode: Avoid temporary variables of SkString type.
Just like most of the other samples, just pass the name of the sample directly. R=epoger@google.com Review URL: https://codereview.appspot.com/6572047 git-svn-id: http://skia.googlecode.com/svn/trunk@5743 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'samplecode/SampleTextBox.cpp')
-rw-r--r--samplecode/SampleTextBox.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/samplecode/SampleTextBox.cpp b/samplecode/SampleTextBox.cpp
index d8612dbb20..a021dbd6fb 100644
--- a/samplecode/SampleTextBox.cpp
+++ b/samplecode/SampleTextBox.cpp
@@ -63,8 +63,7 @@ protected:
// overrides from SkEventSink
virtual bool onQuery(SkEvent* evt) {
if (SampleCode::TitleQ(*evt)) {
- SkString str("TextBox");
- SampleCode::TitleR(evt, str.c_str());
+ SampleCode::TitleR(evt, "TextBox");
return true;
}
return this->INHERITED::onQuery(evt);