Mercurial > hg > easaier-soundaccess
comparison base/PropertyContainer.cpp @ 229:7d5d51145b81
support stereo in MultiRealTimeFilter and integrate Equalizer filter
author | lbajardsilogic |
---|---|
date | Wed, 05 Mar 2008 14:08:57 +0000 |
parents | fc9323a41f5a |
children | a9af42a93073 |
comparison
equal
deleted
inserted
replaced
228:a6b881972a62 | 229:7d5d51145b81 |
---|---|
81 if (value == currentValue) return; | 81 if (value == currentValue) return; |
82 | 82 |
83 CommandHistory::getInstance()->addCommand | 83 CommandHistory::getInstance()->addCommand |
84 (new SetPropertyCommand(this, name, value), true, true); // bundled | 84 (new SetPropertyCommand(this, name, value), true, true); // bundled |
85 } | 85 } |
86 | 86 |
87 void | 87 void |
88 PropertyContainer::setProperty(QString nameString, QString valueString) | 88 PropertyContainer::setProperty(QString nameString, QString valueString) |
89 { | 89 { |
90 PropertyName name; | 90 PropertyName name; |
91 int value; | 91 int value; |
255 QString | 255 QString |
256 PropertyContainer::SetPropertyCommand::getName() const | 256 PropertyContainer::SetPropertyCommand::getName() const |
257 { | 257 { |
258 return tr("Set %1 Property").arg(m_pn); | 258 return tr("Set %1 Property").arg(m_pn); |
259 } | 259 } |
260 |