summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjasplin <qt-info@nokia.com>2010-04-29 14:48:01 +0200
committerjasplin <qt-info@nokia.com>2010-04-29 14:48:01 +0200
commit18d7a0b98fde5e01f84cbbc7ff260240f99d37da (patch)
tree30bfd0d4db12199e283e6fc8ffabfd63bc1d3caa /src
parentb438f4f919d3dbeec6e1190fe351595c3c6e48e9 (diff)
Removed obsolete code.
Diffstat (limited to 'src')
-rw-r--r--src/bm/bmrequest.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bm/bmrequest.cpp b/src/bm/bmrequest.cpp
index 3eda076..c650fb6 100644
--- a/src/bm/bmrequest.cpp
+++ b/src/bm/bmrequest.cpp
@@ -5278,7 +5278,6 @@ void BMRequest_IndexGetValues::handleReply_HTML(const QStringList &args) const
// ... get timestamps, index values, and contributions ...
QList<int> timestamps;
QList<qreal> indexValues;
- QList<qreal> linearIndexValues;
QList<int> contributions;
QDomNodeList valueNodes = doc.elementsByTagName("value");
for (int i = 0; i < valueNodes.size(); ++i) {
@@ -5290,7 +5289,6 @@ void BMRequest_IndexGetValues::handleReply_HTML(const QStringList &args) const
const qreal indexValue = valueElem.attributeNode("indexValue").value().toDouble(&ok);
Q_ASSERT(ok);
indexValues += indexValue;
- linearIndexValues += qPow(2, indexValue);
contributions += valueElem.attributeNode("contributions").value().toInt(&ok);
Q_ASSERT(ok);