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

Unified Diff: debugger/QT/SkRasterWidget.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 | « debugger/QT/SkListWidget.h ('k') | debugger/SkDebugger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkRasterWidget.cpp
diff --git a/debugger/QT/SkRasterWidget.cpp b/debugger/QT/SkRasterWidget.cpp
index 72a742f7aa2610e512e08948695d4f145ab6ff7e..203d98ee4e3967497e1417c27eefc45942166781 100644
--- a/debugger/QT/SkRasterWidget.cpp
+++ b/debugger/QT/SkRasterWidget.cpp
@@ -22,7 +22,7 @@ void SkRasterWidget::resizeEvent(QResizeEvent* event) {
QRect r = this->contentsRect();
if (r.width() == 0 || r.height() == 0) {
- fSurface.reset(NULL);
+ fSurface.reset(nullptr);
} else {
SkImageInfo info = SkImageInfo::MakeN32Premul(r.width(), r.height());
fSurface.reset(SkSurface::NewRaster(info));
« no previous file with comments | « debugger/QT/SkListWidget.h ('k') | debugger/SkDebugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698