diff options
Diffstat (limited to 'shared/proparser/proiteminfo.cpp')
-rw-r--r-- | shared/proparser/proiteminfo.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/shared/proparser/proiteminfo.cpp b/shared/proparser/proiteminfo.cpp index 40411c193b..456e8bee87 100644 --- a/shared/proparser/proiteminfo.cpp +++ b/shared/proparser/proiteminfo.cpp @@ -30,15 +30,16 @@ ** 1.2, included in the file GPL_EXCEPTION.txt in this package. ** ***************************************************************************/ + #include "proiteminfo.h" #include <QtCore/QFile> - using namespace Qt4ProjectManager::Internal; ProItemInfo::ProItemInfo(ProItemInfoKind kind) - : m_kind(kind) { } + : m_kind(kind) +{ } ProItemInfo::ProItemInfoKind ProItemInfo::kind() const { @@ -76,10 +77,12 @@ QString ProItemInfo::description() const } ProScopeInfo::ProScopeInfo() - : ProItemInfo(ProItemInfo::Scope) { } + : ProItemInfo(ProItemInfo::Scope) +{ } ProValueInfo::ProValueInfo() - : ProItemInfo(ProItemInfo::Value) { } + : ProItemInfo(ProItemInfo::Value) +{ } ProVariableInfo::ProVariableInfo() : ProItemInfo(ProItemInfo::Variable) @@ -107,7 +110,6 @@ void ProVariableInfo::setDefaultOperator(ProVariable::VariableOperator op) m_operator = op; } - ProValueInfo *ProVariableInfo::value(const QString &id) const { return m_values.value(id, 0); |