summaryrefslogtreecommitdiffstats
path: root/lib/koproperty
diff options
context:
space:
mode:
Diffstat (limited to 'lib/koproperty')
-rw-r--r--lib/koproperty/customproperty.cpp2
-rw-r--r--lib/koproperty/editors/combobox.cpp6
-rw-r--r--lib/koproperty/editors/cursoredit.cpp4
-rw-r--r--lib/koproperty/editors/cursoredit.h2
-rw-r--r--lib/koproperty/editors/sizepolicyedit.cpp8
-rw-r--r--lib/koproperty/editors/sizepolicyedit.h2
-rw-r--r--lib/koproperty/property.cpp16
-rw-r--r--lib/koproperty/property.h4
8 files changed, 22 insertions, 22 deletions
diff --git a/lib/koproperty/customproperty.cpp b/lib/koproperty/customproperty.cpp
index b51cc317..0cc64743 100644
--- a/lib/koproperty/customproperty.cpp
+++ b/lib/koproperty/customproperty.cpp
@@ -270,7 +270,7 @@ SizePolicyCustomProperty::SizePolicyCustomProperty(Property *property)
: CustomProperty(property)
{
if(property && (property->type() == SizePolicy) ) {
-// TQMap<TQString, TQVariant> spValues;
+// TQStringVariantMap spValues;
TQValueList<TQVariant> keys;
keys << TQSizePolicy::Fixed
<< TQSizePolicy::Minimum
diff --git a/lib/koproperty/editors/combobox.cpp b/lib/koproperty/editors/combobox.cpp
index 1e2a47d4..92b437e9 100644
--- a/lib/koproperty/editors/combobox.cpp
+++ b/lib/koproperty/editors/combobox.cpp
@@ -178,7 +178,7 @@ ComboBox::setReadOnlyInternal(bool readOnly)
/*TQString
ComboBox::keyForValue(const TQVariant &value)
{
- const TQMap<TQString, TQVariant> *list = property()->valueList();
+ const TQStringVariantMap *list = property()->valueList();
Property::ListData *list = property()->listData();
if (!list)
@@ -186,8 +186,8 @@ ComboBox::keyForValue(const TQVariant &value)
int idx = listData->keys.findIndex( value );
- TQMap<TQString, TQVariant>::ConstIterator endIt = list->constEnd();
- for(TQMap<TQString, TQVariant>::ConstIterator it = list->constBegin(); it != endIt; ++it) {
+ TQStringVariantMap::ConstIterator endIt = list->constEnd();
+ for(TQStringVariantMap::ConstIterator it = list->constBegin(); it != endIt; ++it) {
if(it.data() == value)
return it.key();
}
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;
diff --git a/lib/koproperty/editors/cursoredit.h b/lib/koproperty/editors/cursoredit.h
index ff3c565c..0748110a 100644
--- a/lib/koproperty/editors/cursoredit.h
+++ b/lib/koproperty/editors/cursoredit.h
@@ -43,7 +43,7 @@ class KOPROPERTY_EXPORT CursorEdit : public ComboBox
virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value);
private:
- static TQMap<TQString, TQVariant> *m_spValues;
+ static TQStringVariantMap *m_spValues;
};
}
diff --git a/lib/koproperty/editors/sizepolicyedit.cpp b/lib/koproperty/editors/sizepolicyedit.cpp
index c027d1dd..5a63c57f 100644
--- a/lib/koproperty/editors/sizepolicyedit.cpp
+++ b/lib/koproperty/editors/sizepolicyedit.cpp
@@ -32,7 +32,7 @@
using namespace KoProperty;
-TQMap<TQString, TQVariant> *SizePolicyEdit::m_spValues = 0;
+TQStringVariantMap *SizePolicyEdit::m_spValues = 0;
SizePolicyEdit::SizePolicyEdit(Property *property, TQWidget *parent, const char *name)
: Widget(property, parent, name)
@@ -50,7 +50,7 @@ SizePolicyEdit::SizePolicyEdit(Property *property, TQWidget *parent, const char
if(!m_spValues) {
- m_spValues = new TQMap<TQString, TQVariant>();
+ m_spValues = new TQStringVariantMap();
(*m_spValues)[i18n("Size Policy", "Fixed")] = TQSizePolicy::Fixed;
(*m_spValues)[i18n("Size Policy", "Minimum")] = TQSizePolicy::Minimum;
(*m_spValues)[i18n("Size Policy", "Maximum")] = TQSizePolicy::Maximum;
@@ -105,8 +105,8 @@ SizePolicyEdit::findDescription(const TQVariant &value) const
if(!m_spValues)
return TQString();
- TQMap<TQString, TQVariant>::ConstIterator endIt = m_spValues->constEnd();
- for (TQMap<TQString, TQVariant>::ConstIterator it = m_spValues->constBegin(); it != endIt; ++ it) {
+ TQStringVariantMap::ConstIterator endIt = m_spValues->constEnd();
+ for (TQStringVariantMap::ConstIterator it = m_spValues->constBegin(); it != endIt; ++ it) {
if (it.data() == value)
return it.key();
}
diff --git a/lib/koproperty/editors/sizepolicyedit.h b/lib/koproperty/editors/sizepolicyedit.h
index f5e81e75..c8d8e7a8 100644
--- a/lib/koproperty/editors/sizepolicyedit.h
+++ b/lib/koproperty/editors/sizepolicyedit.h
@@ -52,7 +52,7 @@ class KOPROPERTY_EXPORT SizePolicyEdit : public Widget
private:
TQVariant m_value;
TQLabel *m_edit;
- static TQMap<TQString, TQVariant> *m_spValues;
+ static TQStringVariantMap *m_spValues;
};
}
diff --git a/lib/koproperty/property.cpp b/lib/koproperty/property.cpp
index 6c4fa246..d90795ca 100644
--- a/lib/koproperty/property.cpp
+++ b/lib/koproperty/property.cpp
@@ -78,7 +78,7 @@ class PropertyPrivate
TQVariant oldValue;
/*! The string-to-value correspondence list of the property.*/
Property::ListData* listData;
-// TQMap<TQString, TQVariant> *valueList;
+// TQStringVariantMap *valueList;
TQString icon;
bool changed : 1;
@@ -153,10 +153,10 @@ TQStringList Property::ListData::keysAsStringList() const
/////////////////////////////////////////////////////////////////
/*
-KOPROPERTY_EXPORT TQMap<TQString, TQVariant>
+KOPROPERTY_EXPORT TQStringVariantMap
KoProperty::createValueListFromStringLists(const TQStringList &keys, const TQStringList &values)
{
- TQMap<TQString, TQVariant> map;
+ TQStringVariantMap map;
if(keys.count() != values.count())
return map;
@@ -423,7 +423,7 @@ Property::resetValue()
}
}
-//const TQMap<TQString, TQVariant>*
+//const TQStringVariantMap*
Property::ListData*
Property::listData() const
{
@@ -431,10 +431,10 @@ Property::listData() const
}
void
-Property::setListData(ListData* list) //const TQMap<TQString, TQVariant> &list)
+Property::setListData(ListData* list) //const TQStringVariantMap &list)
{
// if(!d->valueList)
-// d->valueList = new TQMap<TQString, TQVariant>();
+// d->valueList = new TQStringVariantMap();
if (list == d->listData)
return;
delete d->listData;
@@ -448,7 +448,7 @@ Property::setListData(const TQStringList &keys, const TQStringList &names)
setListData(list);
// if(!d->valueList)
-// d->valueList = new TQMap<TQString, TQVariant>();
+// d->valueList = new TQStringVariantMap();
// *(d->valueList) = createValueListFromStringLists(keys, values);
}
@@ -590,7 +590,7 @@ Property::operator= (const Property &property)
d->options = property.d->options;
if(property.d->listData) {
- d->listData = new ListData(*property.d->listData); //TQMap<TQString, TQVariant>(*(property.d->valueList));
+ d->listData = new ListData(*property.d->listData); //TQStringVariantMap(*(property.d->valueList));
}
if(property.d->custom) {
d->custom = FactoryManager::self()->createCustomProperty(this);
diff --git a/lib/koproperty/property.h b/lib/koproperty/property.h
index 9f097c61..9938c5df 100644
--- a/lib/koproperty/property.h
+++ b/lib/koproperty/property.h
@@ -56,7 +56,7 @@ class CustomProperty;
class Set;
///*! Helper function to create a value list from two string lists. */
-//KOPROPERTY_EXPORT TQMap<TQString, TQVariant> createValueListFromStringLists(
+//KOPROPERTY_EXPORT TQStringVariantMap createValueListFromStringLists(
// const TQStringList &keys, const TQStringList &values);
/*! PropertyType.
@@ -66,7 +66,7 @@ enum PropertyType {
//standard supported TQVariant types
Auto = TQVariant::Invalid - 1,
Invalid = TQVariant::Invalid /**<invalid property type*/,
- Map = TQVariant::Map /**<TQMap<TQString, TQVariant>*/,
+ Map = TQVariant::Map /**<TQStringVariantMap*/,
List = TQVariant::List /**<TQValueList<TQVariant>*/,
String = TQVariant::String /**<string*/,
StringList = TQVariant::StringList /**<string list*/,