diff options
author | Michele Calgaro <[email protected]> | 2019-06-01 15:22:21 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-06-01 15:22:21 +0900 |
commit | 728b7db2846d191399122c440671fd007cdbd0ae (patch) | |
tree | cd5e6f3b5ae67ec464b2c05ce0d41016bd9e30c3 /lib/koproperty/editors/cursoredit.cpp | |
parent | 04a12485219f38e113932e8aa20b6bc12d8fa715 (diff) | |
download | koffice-728b7db2846d191399122c440671fd007cdbd0ae.tar.gz koffice-728b7db2846d191399122c440671fd007cdbd0ae.zip |
Adjusted to use new TQStringVariantMap type.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'lib/koproperty/editors/cursoredit.cpp')
-rw-r--r-- | lib/koproperty/editors/cursoredit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/koproperty/editors/cursoredit.cpp b/lib/koproperty/editors/cursoredit.cpp index a95ab91f..c0c3010e 100644 --- a/lib/koproperty/editors/cursoredit.cpp +++ b/lib/koproperty/editors/cursoredit.cpp @@ -31,7 +31,7 @@ using namespace KoProperty; -//TQMap<TQString, TQVariant> *CursorEdit::m_spValues = 0; +//TQStringVariantMap *CursorEdit::m_spValues = 0; Property::ListData *m_cursorListData = 0; @@ -40,7 +40,7 @@ CursorEdit::CursorEdit(Property *property, TQWidget *parent, const char *name) { /* if(!m_spValues) { - m_spValues = new TQMap<TQString, TQVariant>(); + m_spValues = new TQStringVariantMap(); (*m_spValues)[i18n("Arrow")] = TQt::ArrowCursor; (*m_spValues)[i18n("Up Arrow")] = TQt::UpArrowCursor; (*m_spValues)[i18n("Cross")] = TQt::CrossCursor; |