Chromium Code Reviews| Index: debugger/QT/SkDebuggerGUI.cpp |
| diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp |
| index 4b87f0f841077247cf150e7ace28b143aefc117d..70cc67d60b6254d9cc9f9b1007034efe7db165ce 100644 |
| --- a/debugger/QT/SkDebuggerGUI.cpp |
| +++ b/debugger/QT/SkDebuggerGUI.cpp |
| @@ -813,7 +813,6 @@ void SkDebuggerGUI::setupListWidget(SkTArray<SkString>* commands, SkTDArray<size |
| if (0 == strcmp("Restore", (*commands)[i].c_str()) || |
| 0 == strcmp("EndCommentGroup", (*commands)[i].c_str()) || |
| - 0 == strcmp("PopCull", (*commands)[i].c_str())) { |
|
f(malita)
2014/12/11 19:15:49
Let's leave that brace in.
mtklein
2014/12/11 19:24:51
Done. Clearly, I did not "ninja everything"...
|
| indent -= 10; |
| } |
| @@ -822,7 +821,6 @@ void SkDebuggerGUI::setupListWidget(SkTArray<SkString>* commands, SkTDArray<size |
| if (0 == strcmp("Save", (*commands)[i].c_str()) || |
| 0 == strcmp("Save Layer", (*commands)[i].c_str()) || |
| 0 == strcmp("BeginCommentGroup", (*commands)[i].c_str()) || |
| - 0 == strcmp("PushCull", (*commands)[i].c_str())) { |
|
f(malita)
2014/12/11 19:15:49
Same.
mtklein
2014/12/11 19:24:51
Done.
|
| indent += 10; |
| } |