diff options
| author | Montel Laurent <[email protected]> | 2017-11-03 08:01:02 +0100 |
|---|---|---|
| committer | Montel Laurent <[email protected]> | 2017-11-03 14:54:06 +0100 |
| commit | ff3f476ed816cff5fc38117979d181707f934639 (patch) | |
| tree | 3caabc1f9699531bb1c0b13a0f57092c3cf06490 /src/panels/information/informationpanel.cpp | |
| parent | d1acb1d56e18f4adef3eba7fc61facb1db5deb75 (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/information/informationpanel.cpp')
| -rw-r--r-- | src/panels/information/informationpanel.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/panels/information/informationpanel.cpp b/src/panels/information/informationpanel.cpp index 16dc721b2..850d94d92 100644 --- a/src/panels/information/informationpanel.cpp +++ b/src/panels/information/informationpanel.cpp @@ -32,16 +32,16 @@ InformationPanel::InformationPanel(QWidget* parent) : Panel(parent), m_initialized(false), - m_infoTimer(0), - m_urlChangedTimer(0), - m_resetUrlTimer(0), + m_infoTimer(nullptr), + m_urlChangedTimer(nullptr), + m_resetUrlTimer(nullptr), m_shownUrl(), m_urlCandidate(), m_invalidUrlCandidate(), m_fileItem(), m_selection(), - m_folderStatJob(0), - m_content(0) + m_folderStatJob(nullptr), + m_content(nullptr) { } |
