┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/places/placespanel.cpp
diff options
context:
space:
mode:
authorMontel Laurent <[email protected]>2017-11-03 08:01:02 +0100
committerMontel Laurent <[email protected]>2017-11-03 14:54:06 +0100
commitff3f476ed816cff5fc38117979d181707f934639 (patch)
tree3caabc1f9699531bb1c0b13a0f57092c3cf06490 /src/panels/places/placespanel.cpp
parentd1acb1d56e18f4adef3eba7fc61facb1db5deb75 (diff)
Use nullptr + add explicit keyword
Test Plan: compile Reviewers: #dolphin, broulik Reviewed By: broulik Subscribers: #dolphin Differential Revision: https://phabricator.kde.org/D8637
Diffstat (limited to 'src/panels/places/placespanel.cpp')
-rw-r--r--src/panels/places/placespanel.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/panels/places/placespanel.cpp b/src/panels/places/placespanel.cpp
index 0ce6d69a5..0b76f18d3 100644
--- a/src/panels/places/placespanel.cpp
+++ b/src/panels/places/placespanel.cpp
@@ -58,13 +58,14 @@
PlacesPanel::PlacesPanel(QWidget* parent) :
Panel(parent),
- m_controller(0),
- m_model(0),
+ m_controller(nullptr),
+ m_model(nullptr),
+ m_view(nullptr),
m_storageSetupFailedUrl(),
m_triggerStorageSetupButton(),
m_itemDropEventIndex(-1),
- m_itemDropEventMimeData(0),
- m_itemDropEvent(0)
+ m_itemDropEventMimeData(nullptr),
+ m_itemDropEvent(nullptr)
{
}