Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Unified Diff: src/svg/parser/SkSVGGroup.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/svg/parser/SkSVGGradient.cpp ('k') | src/svg/parser/SkSVGPaintState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/svg/parser/SkSVGGroup.cpp
diff --git a/src/svg/parser/SkSVGGroup.cpp b/src/svg/parser/SkSVGGroup.cpp
index 420179d8717a7a3fa81824c44b7b2517a4e8fe08..cbd8c4ea7195a169909fdebdd187c830ccc72693 100644
--- a/src/svg/parser/SkSVGGroup.cpp
+++ b/src/svg/parser/SkSVGGroup.cpp
@@ -17,10 +17,10 @@ SkSVGGroup::SkSVGGroup() {
SkSVGElement* SkSVGGroup::getGradient() {
for (SkSVGElement** ptr = fChildren.begin(); ptr < fChildren.end(); ptr++) {
SkSVGElement* result = (*ptr)->getGradient();
- if (result != NULL)
+ if (result != nullptr)
return result;
}
- return NULL;
+ return nullptr;
}
bool SkSVGGroup::isDef() {
« no previous file with comments | « src/svg/parser/SkSVGGradient.cpp ('k') | src/svg/parser/SkSVGPaintState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698