diff options
Diffstat (limited to 'kexi/formeditor/widgetpropertyset.cpp')
-rw-r--r-- | kexi/formeditor/widgetpropertyset.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/formeditor/widgetpropertyset.cpp b/kexi/formeditor/widgetpropertyset.cpp index 64c61112..20182689 100644 --- a/kexi/formeditor/widgetpropertyset.cpp +++ b/kexi/formeditor/widgetpropertyset.cpp @@ -275,8 +275,8 @@ WidgetPropertySet::createPropertiesForWidget(TQWidget *w) if(!tree) return; - const TQVariantMap* modifiedProperties = tree->modifiedProperties(); - TQVariantMapConstIterator modifiedPropertiesIt; + const TQStringVariantMap* modifiedProperties = tree->modifiedProperties(); + TQStringVariantMapConstIterator modifiedPropertiesIt; bool isTopLevel = KFormDesigner::FormManager::self()->isTopLevel(w); // int count = 0; KoProperty::Property *newProp = 0; @@ -416,7 +416,7 @@ WidgetPropertySet::updatePropertyValue(ObjectTreeItem *tree, const char *propert KoProperty::Property p( d->set[propertyName] ); //! \todo what about set properties, and lists properties - TQMap<TQString, TQVariant>::ConstIterator it( tree->modifiedProperties()->find(propertyName) ); + TQStringVariantMap::ConstIterator it( tree->modifiedProperties()->find(propertyName) ); if (it != tree->modifiedProperties()->constEnd()) { blockSignals(true); if(meta && meta->isEnumType()) { @@ -1081,7 +1081,7 @@ WidgetPropertySet::valueCaption(const TQCString &name) KoProperty::Property::ListData* WidgetPropertySet::createValueList(WidgetInfo *winfo, const TQStringList &list) { -// TQMap <TQString, TQVariant> map; +// TQStringVariantMap map; TQStringList names; TQStringList::ConstIterator endIt = list.end(); for(TQStringList::ConstIterator it = list.begin(); it != endIt; ++it) { |