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

Unified Diff: chrome/browser/ui/libgtkui/chrome_gtk_frame.cc

Issue 2707313002: Gtk: Change NULL to nullptr (Closed)
Patch Set: Created 3 years, 10 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
Index: chrome/browser/ui/libgtkui/chrome_gtk_frame.cc
diff --git a/chrome/browser/ui/libgtkui/chrome_gtk_frame.cc b/chrome/browser/ui/libgtkui/chrome_gtk_frame.cc
index 9d23718e7aa8809e7a1996c736f9f355decca8b9..6820a479c88220963d108e1d013924c8b35e6c2d 100644
--- a/chrome/browser/ui/libgtkui/chrome_gtk_frame.cc
+++ b/chrome/browser/ui/libgtkui/chrome_gtk_frame.cc
@@ -147,9 +147,8 @@ static void chrome_gtk_frame_init(ChromeGtkFrame* frame) {
}
GtkWidget* chrome_gtk_frame_new(void) {
- return GTK_WIDGET(g_object_new(chrome_gtk_frame_get_type(),
- "type", GTK_WINDOW_TOPLEVEL,
- NULL));
+ return GTK_WIDGET(g_object_new(chrome_gtk_frame_get_type(), "type",
+ GTK_WINDOW_TOPLEVEL, nullptr));
}
G_END_DECLS
« no previous file with comments | « chrome/browser/ui/libgtkui/app_indicator_icon_menu.cc ('k') | chrome/browser/ui/libgtkui/chrome_gtk_menu_subclasses.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698