summaryrefslogtreecommitdiff
path: root/services/inputflinger/InputApplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'services/inputflinger/InputApplication.cpp')
-rw-r--r--services/inputflinger/InputApplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/inputflinger/InputApplication.cpp b/services/inputflinger/InputApplication.cpp
index 9e90631840..c56dfe6879 100644
--- a/services/inputflinger/InputApplication.cpp
+++ b/services/inputflinger/InputApplication.cpp
@@ -25,7 +25,7 @@ namespace android {
// --- InputApplicationHandle ---
InputApplicationHandle::InputApplicationHandle() :
- mInfo(NULL) {
+ mInfo(nullptr) {
}
InputApplicationHandle::~InputApplicationHandle() {
@@ -35,7 +35,7 @@ InputApplicationHandle::~InputApplicationHandle() {
void InputApplicationHandle::releaseInfo() {
if (mInfo) {
delete mInfo;
- mInfo = NULL;
+ mInfo = nullptr;
}
}