diff options
author | Michele Calgaro <[email protected]> | 2019-06-01 15:56:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-06-01 15:56:13 +0900 |
commit | b1e66b339befa7bdf222f7bb80a431236a3ff689 (patch) | |
tree | 3ae72987233dbeddeb7fe370ee36dbe36077663c /lib/widgets/propeditor/property.cpp | |
parent | 5fcb1d91b4f52ab609864968a7320eb276f6c068 (diff) | |
download | tdevelop-b1e66b339befa7bdf222f7bb80a431236a3ff689.tar.gz tdevelop-b1e66b339befa7bdf222f7bb80a431236a3ff689.zip |
Adjusted to use new TQStringVariantMap type.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'lib/widgets/propeditor/property.cpp')
-rw-r--r-- | lib/widgets/propeditor/property.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/propeditor/property.cpp b/lib/widgets/propeditor/property.cpp index d219b8c3..4a8f2db3 100644 --- a/lib/widgets/propeditor/property.cpp +++ b/lib/widgets/propeditor/property.cpp @@ -29,7 +29,7 @@ Property::Property(int type, const TQString &name, const TQString &description, { } -Property::Property(const TQString &name, const TQMap<TQString, TQVariant> &v_valueList, +Property::Property(const TQString &name, const TQStringVariantMap &v_valueList, const TQString &description, const TQVariant &value, bool save, bool readOnly): valueList(v_valueList), m_type(ValueFromList), m_name(name), m_description(description), m_value(value), m_save(save), m_readOnly(readOnly), @@ -98,7 +98,7 @@ void Property::setDescription(const TQString &description) m_description = description; } -void Property::setValueList(const TQMap<TQString, TQVariant> &v_valueList) +void Property::setValueList(const TQStringVariantMap &v_valueList) { valueList = v_valueList; } |