| Index: ppapi/examples/ime/ime.cc
|
| diff --git a/ppapi/examples/ime/ime.cc b/ppapi/examples/ime/ime.cc
|
| index e217145d399bcd7ed01d0dcdec7a393fef0d9c1d..983053268c89e0009de29c83cf52ae45cb7b9aca 100644
|
| --- a/ppapi/examples/ime/ime.cc
|
| +++ b/ppapi/examples/ime/ime.cc
|
| @@ -148,7 +148,7 @@ class MyTextField {
|
|
|
| // Paint on the specified ImageData.
|
| void PaintOn(pp::ImageData* image, pp::Rect clip) {
|
| - clip = clip.Intersect(area_);
|
| + clip.Intersect(area_);
|
| FillRect(image, clip, kTextfieldBgColor);
|
|
|
| if (caret_pos_ != std::string::npos) {
|
|
|