diff --git a/kdevdesigner/designer/metadatabase.cpp b/kdevdesigner/designer/metadatabase.cpp index 7aa004d7..74d8ef33 100644 --- a/kdevdesigner/designer/metadatabase.cpp +++ b/kdevdesigner/designer/metadatabase.cpp @@ -63,7 +63,7 @@ class MetaDataBaseRecord public: TQObject *object; TQStringList changedProperties; - TQMap fakeProperties; + TQStringVariantMap fakeProperties; TQMap propertyComments; int spacing, margin; TQString resizeMode; @@ -271,14 +271,14 @@ TQVariant MetaDataBase::fakeProperty( TQObject * o, const TQString &property) o, o->name(), o->className() ); return TQVariant(); } - TQMap::Iterator it = r->fakeProperties.find( property ); + TQStringVariantMap::Iterator it = r->fakeProperties.find( property ); if ( it != r->fakeProperties.end() ) return r->fakeProperties[property]; return WidgetFactory::defaultValue( o, property ); } -TQMap* MetaDataBase::fakeProperties( TQObject* o ) +TQStringVariantMap* MetaDataBase::fakeProperties( TQObject* o ) { setupDataBase(); MetaDataBaseRecord *r = db->find( (void*)o ); diff --git a/kdevdesigner/designer/metadatabase.h b/kdevdesigner/designer/metadatabase.h index 352e10d7..e9535945 100644 --- a/kdevdesigner/designer/metadatabase.h +++ b/kdevdesigner/designer/metadatabase.h @@ -155,7 +155,7 @@ public: static void setFakeProperty( TQObject *o, const TQString &property, const TQVariant& value ); static TQVariant fakeProperty( TQObject * o, const TQString &property ); - static TQMap* fakeProperties( TQObject* o ); + static TQStringVariantMap* fakeProperties( TQObject* o ); static void setSpacing( TQObject *o, int spacing ); static int spacing( TQObject *o ); diff --git a/kdevdesigner/designer/resource.cpp b/kdevdesigner/designer/resource.cpp index a6285db5..f86490c4 100644 --- a/kdevdesigner/designer/resource.cpp +++ b/kdevdesigner/designer/resource.cpp @@ -1474,8 +1474,8 @@ void Resource::saveObjectProperties( TQObject *w, TQTextStream &ts, int indent ) } if ( w->isWidgetType() && MetaDataBase::fakeProperties( w ) ) { - TQMap* fakeProperties = MetaDataBase::fakeProperties( w ); - for ( TQMap::Iterator fake = fakeProperties->begin(); + TQStringVariantMap* fakeProperties = MetaDataBase::fakeProperties( w ); + for ( TQStringVariantMap::Iterator fake = fakeProperties->begin(); fake != fakeProperties->end(); ++fake ) { if ( MetaDataBase::isPropertyChanged( w, fake.key() ) ) { if ( w->inherits("CustomWidget") ) { diff --git a/lib/widgets/propeditor/childproperty.cpp b/lib/widgets/propeditor/childproperty.cpp index beebad5a..3f4ea5c4 100644 --- a/lib/widgets/propeditor/childproperty.cpp +++ b/lib/widgets/propeditor/childproperty.cpp @@ -35,7 +35,7 @@ ChildProperty::ChildProperty(MultiProperty *parent, int type, ChildPropertyType } ChildProperty::ChildProperty(MultiProperty *parent, const TQString & name, ChildPropertyType childType, - const TQMap &v_valueList, const TQString &description, + const TQStringVariantMap &v_valueList, const TQString &description, const TQVariant &value, bool save, bool readOnly) :Property(name, v_valueList, description, value, save, readOnly), m_parent(parent), m_childType(childType) { diff --git a/lib/widgets/propeditor/childproperty.h b/lib/widgets/propeditor/childproperty.h index 6e247fd3..d2e5e706 100644 --- a/lib/widgets/propeditor/childproperty.h +++ b/lib/widgets/propeditor/childproperty.h @@ -65,7 +65,7 @@ public: bool save = true, bool readOnly = false); /**Constructs property with @ref ValueFromList type.*/ ChildProperty(MultiProperty *parent, const TQString &name, ChildPropertyType childType, - const TQMap &v_valueList, const TQString &description, + const TQStringVariantMap &v_valueList, const TQString &description, const TQVariant &value = TQVariant(), bool save = true, bool readOnly = false); /**@return the value of the property.*/ diff --git a/lib/widgets/propeditor/multiproperty.cpp b/lib/widgets/propeditor/multiproperty.cpp index eae14e98..7f8b1935 100644 --- a/lib/widgets/propeditor/multiproperty.cpp +++ b/lib/widgets/propeditor/multiproperty.cpp @@ -129,11 +129,11 @@ bool MultiProperty::visible() const return v; } -TQMap MultiProperty::valueList() const +TQStringVariantMap MultiProperty::valueList() const { if (list.count() >= 1) return list.getFirst()->valueList; - return TQMap(); + return TQStringVariantMap(); } void MultiProperty::setDescription(const TQString &description) @@ -176,7 +176,7 @@ void MultiProperty::setValue(const TQVariant &value, bool emitChange) } } -void MultiProperty::setValueList(const TQMap &valueList) +void MultiProperty::setValueList(const TQStringVariantMap &valueList) { Property *property; for (property = list.first(); property; property = list.next()) @@ -232,8 +232,8 @@ TQVariant MultiProperty::findValueDescription() const TQVariant val = value(); if (type() != Property::ValueFromList) return val; - TQMap vl = valueList(); - for (TQMap::const_iterator it = vl.begin(); it != vl.end(); ++ it) + TQStringVariantMap vl = valueList(); + for (TQStringVariantMap::const_iterator it = vl.begin(); it != vl.end(); ++ it) { if (it.data() == val) return it.key(); @@ -245,8 +245,8 @@ TQVariant MultiProperty::findValueDescription(TQVariant val) const { if (type() != Property::ValueFromList) return val; - TQMap vl = valueList(); - for (TQMap::const_iterator it = vl.begin(); it != vl.end(); ++ it) + TQStringVariantMap vl = valueList(); + for (TQStringVariantMap::const_iterator it = vl.begin(); it != vl.end(); ++ it) { if (it.data() == val) return it.key(); diff --git a/lib/widgets/propeditor/multiproperty.h b/lib/widgets/propeditor/multiproperty.h index 49410a04..61c04e7d 100644 --- a/lib/widgets/propeditor/multiproperty.h +++ b/lib/widgets/propeditor/multiproperty.h @@ -84,7 +84,7 @@ public: /**Returns the visibility attribute of a %property.*/ bool visible() const; /**The string-to-value correspondence list of the %property.*/ - TQMap valueList() const; + TQStringVariantMap valueList() const; /**Sets the value of a %property.*/ void setValue(const TQVariant& value); diff --git a/lib/widgets/propeditor/pcombobox.cpp b/lib/widgets/propeditor/pcombobox.cpp index 7f0d242e..a0749744 100644 --- a/lib/widgets/propeditor/pcombobox.cpp +++ b/lib/widgets/propeditor/pcombobox.cpp @@ -24,13 +24,13 @@ namespace PropertyLib{ -PComboBox::PComboBox(MultiProperty *property, const TQMap &list, TQWidget *parent, const char *name) +PComboBox::PComboBox(MultiProperty *property, const TQStringVariantMap &list, TQWidget *parent, const char *name) :PropertyWidget(property, parent, name), m_valueList(list) { init(false); } -PComboBox::PComboBox(MultiProperty *property, const TQMap &list, bool rw, TQWidget *parent, const char *name) +PComboBox::PComboBox(MultiProperty *property, const TQStringVariantMap &list, bool rw, TQWidget *parent, const char *name) :PropertyWidget(property, parent, name), m_valueList(list) { init(rw); @@ -50,7 +50,7 @@ void PComboBox::init(bool rw) void PComboBox::fillBox() { - for (TQMap::const_iterator it = m_valueList.begin(); it != m_valueList.end(); it++) + for (TQStringVariantMap::const_iterator it = m_valueList.begin(); it != m_valueList.end(); it++) { m_edit->insertItem(it.key()); } @@ -58,7 +58,7 @@ void PComboBox::fillBox() TQVariant PComboBox::value() const { - TQMap::const_iterator it = m_valueList.find(m_edit->currentText()); + TQStringVariantMap::const_iterator it = m_valueList.find(m_edit->currentText()); if (it == m_valueList.end()) return TQVariant(""); return TQVariant(it.data()); @@ -83,7 +83,7 @@ void PComboBox::updateProperty(int /*val*/) TQString PComboBox::findDescription(const TQVariant &value) { - for (TQMap::const_iterator it = m_valueList.begin(); it != m_valueList.end(); ++ it) + for (TQStringVariantMap::const_iterator it = m_valueList.begin(); it != m_valueList.end(); ++ it) { if (it.data() == value) return it.key(); @@ -91,7 +91,7 @@ TQString PComboBox::findDescription(const TQVariant &value) return ""; } -void PComboBox::setValueList(const TQMap &valueList) +void PComboBox::setValueList(const TQStringVariantMap &valueList) { m_valueList = valueList; m_edit->clear(); diff --git a/lib/widgets/propeditor/pcombobox.h b/lib/widgets/propeditor/pcombobox.h index 98937eaa..c9da1ad9 100644 --- a/lib/widgets/propeditor/pcombobox.h +++ b/lib/widgets/propeditor/pcombobox.h @@ -38,9 +38,9 @@ class PComboBox: public PropertyWidget{ public: /**This constructor is used for read-only selection combo. It provides a value from valueList*/ - PComboBox(MultiProperty *property, const TQMap &list, TQWidget *parent = 0, const char *name = 0); + PComboBox(MultiProperty *property, const TQStringVariantMap &list, TQWidget *parent = 0, const char *name = 0); /**This constructor is used for read-write selection combo. It provides a value from valueList*/ - PComboBox(MultiProperty *property, const TQMap &list, bool rw, TQWidget *parent = 0, const char *name = 0); + PComboBox(MultiProperty *property, const TQStringVariantMap &list, bool rw, TQWidget *parent = 0, const char *name = 0); /**@return the value currently entered in the editor widget.*/ virtual TQVariant value() const; @@ -50,7 +50,7 @@ public: /**Sets the list of possible values shown in the editor widget. This method does not emit propertyChanged signal. Reimplemented because combobox is used to display possible values from valueList.*/ - virtual void setValueList(const TQMap &valueList); + virtual void setValueList(const TQStringVariantMap &valueList); protected: TQString findDescription(const TQVariant &value); @@ -63,7 +63,7 @@ private: void init(bool rw = false); /** map*/ - TQMap m_valueList; + TQStringVariantMap m_valueList; TQComboBox *m_edit; }; diff --git a/lib/widgets/propeditor/pcursoredit.cpp b/lib/widgets/propeditor/pcursoredit.cpp index 85aefd5e..43cba71c 100644 --- a/lib/widgets/propeditor/pcursoredit.cpp +++ b/lib/widgets/propeditor/pcursoredit.cpp @@ -23,7 +23,7 @@ namespace PropertyLib{ -PCursorEdit::PCursorEdit(MultiProperty* property, const TQMap &spValues, +PCursorEdit::PCursorEdit(MultiProperty* property, const TQStringVariantMap &spValues, TQWidget* parent, const char* name) :PComboBox(property, spValues, parent, name) { diff --git a/lib/widgets/propeditor/pcursoredit.h b/lib/widgets/propeditor/pcursoredit.h index 1d3925ae..5ff9fbf3 100644 --- a/lib/widgets/propeditor/pcursoredit.h +++ b/lib/widgets/propeditor/pcursoredit.h @@ -32,7 +32,7 @@ class PCursorEdit: public PComboBox Q_OBJECT public: - PCursorEdit(MultiProperty* property, const TQMap &spValues, + PCursorEdit(MultiProperty* property, const TQStringVariantMap &spValues, TQWidget* parent = 0, const char* name = 0); virtual void drawViewer(TQPainter* p, const TQColorGroup& cg, const TQRect& r, const TQVariant& value); 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 &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 &v_valueList) +void Property::setValueList(const TQStringVariantMap &v_valueList) { valueList = v_valueList; } diff --git a/lib/widgets/propeditor/property.h b/lib/widgets/propeditor/property.h index a94ea4cb..0e89c8cf 100644 --- a/lib/widgets/propeditor/property.h +++ b/lib/widgets/propeditor/property.h @@ -66,7 +66,7 @@ public: enum PropertyType { //standard supported TQVariant types Invalid = TQVariant::Invalid /***/, + Map = TQVariant::Map /***/, String = TQVariant::String /** &v_valueList, + Property(const TQString &name, const TQStringVariantMap &v_valueList, const TQString &description, const TQVariant &value = TQVariant(), bool save = true, bool readOnly = false); virtual ~Property(); @@ -144,9 +144,9 @@ public: virtual void setDescription(const TQString &description); /**Sets the string-to-value correspondence list of the property. This is used to create comboboxes-like property editors.*/ - virtual void setValueList(const TQMap &list); + virtual void setValueList(const TQStringVariantMap &list); /**The string-to-value correspondence list of the property.*/ - TQMap valueList; + TQStringVariantMap valueList; /**Tells if the property can be saved to a stream, xml, etc. There is a possibility to use "GUI" properties that aren't diff --git a/lib/widgets/propeditor/propertyeditor.cpp b/lib/widgets/propeditor/propertyeditor.cpp index 780b2821..987bb31b 100644 --- a/lib/widgets/propeditor/propertyeditor.cpp +++ b/lib/widgets/propeditor/propertyeditor.cpp @@ -441,7 +441,7 @@ Machine *PropertyEditor::machine(MultiProperty *property) { // int type = property->type(); TQString name = property->name(); - TQMap values = property->valueList(); + TQStringVariantMap values = property->valueList(); if (m_registeredForType[name] == 0) { m_registeredForType[name] = PropertyMachineFactory::getInstance()->machineForProperty(property); diff --git a/lib/widgets/propeditor/propertymachinefactory.cpp b/lib/widgets/propeditor/propertymachinefactory.cpp index 389fc38f..0d92beee 100644 --- a/lib/widgets/propeditor/propertymachinefactory.cpp +++ b/lib/widgets/propeditor/propertymachinefactory.cpp @@ -74,7 +74,7 @@ Machine *PropertyMachineFactory::machineForProperty(MultiProperty *property) { int type = property->type(); TQString propertyName = property->name(); - TQMap valueList = property->valueList(); + TQStringVariantMap valueList = property->valueList(); if (m_registeredForType.contains(propertyName)) return (*m_registeredForType[propertyName])(); @@ -143,7 +143,7 @@ Machine *PropertyMachineFactory::machineForProperty(MultiProperty *property) } case Property::SizePolicy: { - TQMap spValues; + TQStringVariantMap spValues; spValues[i18n("Fixed")] = TQSizePolicy::Fixed; spValues[i18n("Minimum")] = TQSizePolicy::Minimum; spValues[i18n("Maximum")] = TQSizePolicy::Maximum; @@ -161,7 +161,7 @@ Machine *PropertyMachineFactory::machineForProperty(MultiProperty *property) } case Property::Cursor: { - TQMap spValues; + TQStringVariantMap spValues; spValues[i18n("Arrow")] = TQt::ArrowCursor; spValues[i18n("Up Arrow")] = TQt::UpArrowCursor; spValues[i18n("Cross")] = TQt::CrossCursor; diff --git a/lib/widgets/propeditor/propertywidget.cpp b/lib/widgets/propeditor/propertywidget.cpp index 38a99c9c..1ec91a0d 100644 --- a/lib/widgets/propeditor/propertywidget.cpp +++ b/lib/widgets/propeditor/propertywidget.cpp @@ -46,7 +46,7 @@ void PropertyWidget::drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRe p->drawText(r, TQt::AlignLeft | TQt::AlignVCenter | TQt::SingleLine, value.toString()); } -void PropertyWidget::setValueList(const TQMap &// valueList +void PropertyWidget::setValueList(const TQStringVariantMap &// valueList ) { //this does nothing diff --git a/lib/widgets/propeditor/propertywidget.h b/lib/widgets/propeditor/propertywidget.h index f1cec5bc..5071190b 100644 --- a/lib/widgets/propeditor/propertywidget.h +++ b/lib/widgets/propeditor/propertywidget.h @@ -65,7 +65,7 @@ public: virtual void setProperty(MultiProperty *property); /**Sets the list of possible values shown in the editor widget. This method does not emit propertyChanged signal.*/ - virtual void setValueList(const TQMap &valueList); + virtual void setValueList(const TQStringVariantMap &valueList); /**Function to draw a property viewer when the editor isn't shown.*/ virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value); diff --git a/lib/widgets/propeditor/psizepolicyedit.cpp b/lib/widgets/propeditor/psizepolicyedit.cpp index 99983457..95ff54f7 100644 --- a/lib/widgets/propeditor/psizepolicyedit.cpp +++ b/lib/widgets/propeditor/psizepolicyedit.cpp @@ -26,7 +26,7 @@ namespace PropertyLib{ -PSizePolicyEdit::PSizePolicyEdit(MultiProperty* property, const TQMap &spValues, TQWidget* parent, const char* name) +PSizePolicyEdit::PSizePolicyEdit(MultiProperty* property, const TQStringVariantMap &spValues, TQWidget* parent, const char* name) :PropertyWidget(property, parent, name), m_spValues(spValues) { TQHBoxLayout *l = new TQHBoxLayout(this, 0, 0); @@ -62,7 +62,7 @@ void PSizePolicyEdit::setValue(const TQVariant& value, bool emitChange) TQString PSizePolicyEdit::findValueDescription(TQVariant val) const { // tqWarning("PSizePolicyEdit::findValueDescription : %d", val.toInt()); - for (TQMap::const_iterator it = m_spValues.begin(); it != m_spValues.end(); ++ it) + for (TQStringVariantMap::const_iterator it = m_spValues.begin(); it != m_spValues.end(); ++ it) { if (it.data() == val) return it.key(); diff --git a/lib/widgets/propeditor/psizepolicyedit.h b/lib/widgets/propeditor/psizepolicyedit.h index 58b661f6..45ad5414 100644 --- a/lib/widgets/propeditor/psizepolicyedit.h +++ b/lib/widgets/propeditor/psizepolicyedit.h @@ -36,7 +36,7 @@ class PSizePolicyEdit : public PropertyWidget Q_OBJECT public: - PSizePolicyEdit(MultiProperty* property, const TQMap &spValues, TQWidget* parent=0, const char* name=0); + PSizePolicyEdit(MultiProperty* property, const TQStringVariantMap &spValues, TQWidget* parent=0, const char* name=0); virtual TQVariant value() const; virtual void drawViewer(TQPainter* p, const TQColorGroup& cg, const TQRect& r, const TQVariant& value); @@ -47,7 +47,7 @@ public: private: KLineEdit *m_edit; TQVariant m_value; - TQMap m_spValues; + TQStringVariantMap m_spValues; }; } diff --git a/parts/astyle/astyle_adaptor.cpp b/parts/astyle/astyle_adaptor.cpp index 05fb0901..49ff81a8 100644 --- a/parts/astyle/astyle_adaptor.cpp +++ b/parts/astyle/astyle_adaptor.cpp @@ -38,9 +38,9 @@ string ASStringIterator::nextLine() } -KDevFormatter::KDevFormatter(const TQMap& options) +KDevFormatter::KDevFormatter(const TQStringVariantMap& options) { -// for ( TQMap::ConstIterator iter = options.begin();iter != options.end();iter++ ) +// for ( TQStringVariantMap::ConstIterator iter = options.begin();iter != options.end();iter++ ) // { // kdDebug ( 9009 ) << "format: " << iter.key() << "=" << iter.data() << endl; // } diff --git a/parts/astyle/astyle_adaptor.h b/parts/astyle/astyle_adaptor.h index 21398fbb..d1cb4e61 100644 --- a/parts/astyle/astyle_adaptor.h +++ b/parts/astyle/astyle_adaptor.h @@ -37,7 +37,7 @@ class KDevFormatter : public astyle::ASFormatter { public: - KDevFormatter(const TQMap& options); + KDevFormatter(const TQStringVariantMap& options); KDevFormatter( AStyleWidget * widget ); TQString indentString() const { diff --git a/parts/astyle/astyle_part.cpp b/parts/astyle/astyle_part.cpp index 16d590ab..f5b5e2e7 100644 --- a/parts/astyle/astyle_part.cpp +++ b/parts/astyle/astyle_part.cpp @@ -101,7 +101,7 @@ void AStylePart::loadGlobal() } -// for (TQMap::iterator iter = m_global.begin();iter != m_global.end();iter++) +// for (TQStringVariantMap::iterator iter = m_global.begin();iter != m_global.end();iter++) // { // kdDebug(9009) << "load: " <::iterator iter = m_project.begin();iter != m_project.end();iter++) +// for (TQStringVariantMap::iterator iter = m_project.begin();iter != m_project.end();iter++) // { // kdDebug(9009) << "project before: " <sync(); -// for (TQMap::iterator iter = m_global.begin();iter != m_global.end();iter++) +// for (TQStringVariantMap::iterator iter = m_global.begin();iter != m_global.end();iter++) // { // kdDebug(9009) << "global after: " <::iterator iter = m_project.begin();iter != m_project.end();iter++) + for (TQStringVariantMap::iterator iter = m_project.begin();iter != m_project.end();iter++) { style.setAttribute(iter.key(),iter.data().toString()); } diff --git a/parts/astyle/astyle_part.h b/parts/astyle/astyle_part.h index 61b5a382..f5a79485 100644 --- a/parts/astyle/astyle_part.h +++ b/parts/astyle/astyle_part.h @@ -30,7 +30,7 @@ public: AStylePart(TQObject *parent, const char *name, const TQStringList &); ~AStylePart(); - TQString formatSource(const TQString text, AStyleWidget * widget, const TQMap& options); + TQString formatSource(const TQString text, AStyleWidget * widget, const TQStringVariantMap& options); virtual TQString formatSource(const TQString text); TQString indentString() const; void saveGlobal(); @@ -40,8 +40,8 @@ public: void restorePartialProjectSession(const TQDomElement * el); void savePartialProjectSession(TQDomElement * el); - TQMap& getProjectOptions(){return m_project;} - TQMap& getGlobalOptions(){return m_global;} + TQStringVariantMap& getProjectOptions(){return m_project;} + TQStringVariantMap& getGlobalOptions(){return m_global;} private slots: @@ -65,8 +65,8 @@ private: TDEAction *formatFileAction; // the configurable options. - TQMap m_project; - TQMap m_global; + TQStringVariantMap m_project; + TQStringVariantMap m_global; TQStringList m_projectExtensions; TQStringList m_globalExtensions; TQMap m_searchExtensions; diff --git a/parts/astyle/astyle_widget.cpp b/parts/astyle/astyle_widget.cpp index a70c6771..6959fe7b 100644 --- a/parts/astyle/astyle_widget.cpp +++ b/parts/astyle/astyle_widget.cpp @@ -53,7 +53,7 @@ AStyleWidget::AStyleWidget(AStylePart * part, bool global, TQWidget *parent, con connect(Keep_Blocks, TQT_SIGNAL(clicked()), this, TQT_SLOT(styleChanged())); - TQMap option; + TQStringVariantMap option; if ( isGlobalWidget){ Style_Global->hide(); option = m_part->getGlobalOptions(); @@ -172,7 +172,7 @@ AStyleWidget::~AStyleWidget() void AStyleWidget::accept() { - TQMap* m_option; + TQStringVariantMap* m_option; if ( isGlobalWidget){ m_option = &(m_part->getGlobalOptions()); m_part->setExtensions(GeneralExtension->text(),true); @@ -195,8 +195,8 @@ void AStyleWidget::accept() else if (Style_JAVA->isChecked()) (*m_option)["FStyle"] = "JAVA"; else if (Style_Global->isChecked()){ - TQMap& global = m_part->getGlobalOptions(); - TQMap& project = m_part->getProjectOptions(); + TQStringVariantMap& global = m_part->getGlobalOptions(); + TQStringVariantMap& project = m_part->getProjectOptions(); project=global; project["FStyle"]="GLOBAL"; } @@ -264,7 +264,7 @@ void AStyleWidget::accept() } if ( isGlobalWidget){ - TQMap& project = m_part->getProjectOptions(); + TQStringVariantMap& project = m_part->getProjectOptions(); if ( project["FStyle"] == "GLOBAL"){ project = m_part->getGlobalOptions(); project["FStyle"] = "GLOBAL"; @@ -272,7 +272,7 @@ void AStyleWidget::accept() m_part->saveGlobal(); } -// for ( TQMap::ConstIterator iter = m_option->begin();iter != m_option->end();iter++ ) +// for ( TQStringVariantMap::ConstIterator iter = m_option->begin();iter != m_option->end();iter++ ) // { // kdDebug ( 9009 ) << "widget: " << iter.key() << "=" << iter.data() << endl; // }