Skip to content
Snippets Groups Projects
Commit 14353f53 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

impl -> .h

parent 12078f13
No related branches found
No related tags found
1 merge request!2195various things while testing GUI
...@@ -44,11 +44,6 @@ void DoubleProperty::init(const QString& label, const QString& tooltip, double v ...@@ -44,11 +44,6 @@ void DoubleProperty::init(const QString& label, const QString& tooltip, double v
m_uid = QUuid::createUuid().toString(); m_uid = QUuid::createUuid().toString();
} }
void DoubleProperty::setLimits(const RealLimits& limits)
{
m_limits = limits;
}
bool DoubleProperty::isInitialized() const bool DoubleProperty::isInitialized() const
{ {
return !m_uid.isEmpty(); return !m_uid.isEmpty();
......
...@@ -58,7 +58,7 @@ public: ...@@ -58,7 +58,7 @@ public:
QString tooltip() const { return m_tooltip; } QString tooltip() const { return m_tooltip; }
RealLimits limits() const { return m_limits; } RealLimits limits() const { return m_limits; }
void setLimits(const RealLimits& limits); void setLimits(const RealLimits& limits) { m_limits = limits; }
//! True if one of the init methods has been called (checks for a valid uid). //! True if one of the init methods has been called (checks for a valid uid).
bool isInitialized() const; bool isInitialized() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment