diff options
Diffstat (limited to 'src/plugins/cpptools/cppmodelmanagerinterface.h')
-rw-r--r-- | src/plugins/cpptools/cppmodelmanagerinterface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/cppmodelmanagerinterface.h b/src/plugins/cpptools/cppmodelmanagerinterface.h index ac1bcf9a3d..cf33a7aaba 100644 --- a/src/plugins/cpptools/cppmodelmanagerinterface.h +++ b/src/plugins/cpptools/cppmodelmanagerinterface.h @@ -134,10 +134,10 @@ public: { } operator bool() const - { return ! m_project.isNull(); } + { return !m_project.isNull(); } bool isValid() const - { return ! m_project.isNull(); } + { return !m_project.isNull(); } bool isNull() const { return m_project.isNull(); } |