diff -r 11d3954df52a -r 627c4a0fd0e7 src/hbcore/style/hbstyleparameters.h --- a/src/hbcore/style/hbstyleparameters.h Thu May 27 13:10:59 2010 +0300 +++ b/src/hbcore/style/hbstyleparameters.h Fri Jun 11 13:58:22 2010 +0300 @@ -38,21 +38,22 @@ virtual ~HbStyleParameters(); int count(); - int indexOf( const QString& param ); + int indexOf( const QString& key ); + QString key( int index ); QString parameter( int index ); QVariant value( int index ); - QVariant value( const QString ¶m ); + QVariant value( const QString &key ); void setValue( int index, const QVariant &value ); - void setValue( const QString ¶m, const QVariant &value ); + void setValue( const QString &key, const QVariant &value ); - void addParameter( const QString ¶m, const QVariant &value = QVariant() ); + void addParameter( const QString &key, const QVariant &value = QVariant() ); void removeAt( int index ); private: friend class HbStyle; - QList ¶ms(); + QList &keys(); QList &values(); private: