Changeset 5b3b66
- Timestamp:
- 01/17/12 13:20:19 (4 months ago)
- Branches:
- ('master', 'deebf2045e7119c339412580f37a1e653f7d5715')('controller-upgrade', '00f95d22e12d96ef089e0902ef62ae8ce841dc6f')
- Children:
- 5ce0b81e39f7ef7fca38b915ed42b6d3bef1ce91
- Parents:
- a182ba2111f3fa020edcce1f5e9192dd0ce25c56
- git-author:
- Micke Prag <micke.prag@telldus.se>2012-01-17 13:20:19+01:00
- git-committer:
- Micke Prag <micke.prag@telldus.se>2012-01-17 13:20:19+01:00
- File:
-
- 1 edited
-
telldus-gui/Plugins/QML/qmlarray.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
telldus-gui/Plugins/QML/qmlarray.cpp
ra182ba r5b3b66 1 1 #include "qmlarray.h" 2 3 #include <QDebug>4 2 5 3 class QMLArray::PrivateData { … … 37 35 38 36 void QMLArray::remove(int index) { 39 qDebug() << "Count first: " << d->list.count();40 37 beginRemoveRows( QModelIndex(), index, index ); 41 38 d->list.takeAt(index); 42 39 endRemoveRows(); 43 qDebug() << "Count after: " << d->list.size();44 40 } 45 41
Note: See TracChangeset
for help on using the changeset viewer.
