Skip to content

Commit 5cb58cd

Browse files
committed
use nullptr instead of nullptr_t()
1 parent eeb2e58 commit 5cb58cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atom/browser/api/atom_api_web_contents.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ void WebContents::DidChangeThemeColor(SkColor theme_color) {
760760
if (theme_color != SK_ColorTRANSPARENT) {
761761
Emit("did-change-theme-color", atom::ToRGBHex(theme_color));
762762
} else {
763-
Emit("did-change-theme-color", nullptr_t());
763+
Emit("did-change-theme-color", nullptr);
764764
}
765765
}
766766

0 commit comments

Comments
 (0)