comparison src/qt/transactionview.cpp @ 1119:e72996cd42c5 draft

Fix detailed transaction information on doubleclick
author Wladimir J. van der Laan <laanwj@gmail.com>
date Thu, 30 Jun 2011 21:34:00 +0200
parents 2170917354c1
children 8c5893ee3b45
comparison
equal deleted inserted replaced
1118:9d9beb7e6707 1119:e72996cd42c5
82 82
83 connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int))); 83 connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int)));
84 connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int))); 84 connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int)));
85 connect(addressWidget, SIGNAL(textChanged(const QString&)), this, SLOT(changedPrefix(const QString&))); 85 connect(addressWidget, SIGNAL(textChanged(const QString&)), this, SLOT(changedPrefix(const QString&)));
86 connect(amountWidget, SIGNAL(textChanged(const QString&)), this, SLOT(changedAmount(const QString&))); 86 connect(amountWidget, SIGNAL(textChanged(const QString&)), this, SLOT(changedAmount(const QString&)));
87
88 connect(view, SIGNAL(doubleClicked(const QModelIndex&)), this, SIGNAL(doubleClicked(const QModelIndex&)));
87 } 89 }
88 90
89 void TransactionView::setModel(TransactionTableModel *model) 91 void TransactionView::setModel(TransactionTableModel *model)
90 { 92 {
91 this->model = model; 93 this->model = model;