Changeset 5b3b66


Ignore:
Timestamp:
01/17/12 13:20:19 (4 months ago)
Author:
Micke Prag <micke.prag@…>
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
Message:

Remove Stefans debug code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • telldus-gui/Plugins/QML/qmlarray.cpp

    ra182ba r5b3b66  
    11#include "qmlarray.h" 
    2  
    3 #include <QDebug> 
    42 
    53class QMLArray::PrivateData { 
     
    3735 
    3836void QMLArray::remove(int index) { 
    39         qDebug() << "Count first: " << d->list.count(); 
    4037        beginRemoveRows( QModelIndex(), index, index ); 
    4138        d->list.takeAt(index); 
    4239        endRemoveRows(); 
    43         qDebug() << "Count after: " << d->list.size(); 
    4440} 
    4541 
Note: See TracChangeset for help on using the changeset viewer.