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 f9d299b937..07c945e19a 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(); } |