diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-22 12:14:06 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-22 12:14:06 -0700 |
commit | 63b6f7d5a25967f003a734d2058a73b4b13e8387 (patch) | |
tree | 0f5d68199afacaa04bd2bac7029fc08e42db18c5 /qt-ui/modeldelegates.cpp | |
parent | 9c3b512701c59955350f317eb6d19e6fdc93f546 (diff) | |
parent | 134e20bdc27f63c73ef8257dc357ae05642fece8 (diff) | |
download | subsurface-63b6f7d5a25967f003a734d2058a73b4b13e8387.tar.gz |
Merge branch 'comboBoxDelegate' of https://github.com/tcanabrava/subsurface
Diffstat (limited to 'qt-ui/modeldelegates.cpp')
-rw-r--r-- | qt-ui/modeldelegates.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-ui/modeldelegates.cpp b/qt-ui/modeldelegates.cpp index 0164deedc..c05e59ea8 100644 --- a/qt-ui/modeldelegates.cpp +++ b/qt-ui/modeldelegates.cpp @@ -54,7 +54,6 @@ QWidget* TankInfoDelegate::createEditor(QWidget* parent, const QStyleOptionViewI QComboBox *comboDelegate = new QComboBox(parent); TankInfoModel *model = new TankInfoModel; QString data = index.model()->data(index, Qt::DisplayRole).toString(); - qDebug() << "Tentando pegar " << data; comboDelegate->setModel(model); int i; for(i = 0; i < model->rowCount(); i++){ |