diff options
| author | Philip Kaufmann <[email protected]> | 2014-03-21 09:12:01 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-03-27 09:22:15 +0100 |
| commit | cfe4cad9e5ad040a1dbfc14098628fa30aa87498 (patch) | |
| tree | b9f79e4bf7fe8ff3b06d7b0c41e921df3beb1e53 /src/qt/transactionview.cpp | |
| parent | Merge pull request #3958 (diff) | |
| download | discoin-cfe4cad9e5ad040a1dbfc14098628fa30aa87498.tar.xz discoin-cfe4cad9e5ad040a1dbfc14098628fa30aa87498.zip | |
[Qt] fix style, formating, comment and indentation problems
- introduced by #3920
Diffstat (limited to 'src/qt/transactionview.cpp')
| -rw-r--r-- | src/qt/transactionview.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index d178efe8d..a36315091 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -438,8 +438,10 @@ void TransactionView::focusTransaction(const QModelIndex &idx) transactionView->setFocus(); } -//We override the virtual resizeEvent of the QWidget to adjust tablet's column sizes as the table's width is proportional to the dialog's. -void TransactionView::resizeEvent(QResizeEvent* event) { - QWidget::resizeEvent(event); - columnResizingFixer->stretchColumnWidth(TransactionTableModel::ToAddress); +// We override the virtual resizeEvent of the QWidget to adjust tables column +// sizes as the tables width is proportional to the dialogs width. +void TransactionView::resizeEvent(QResizeEvent* event) +{ + QWidget::resizeEvent(event); + columnResizingFixer->stretchColumnWidth(TransactionTableModel::ToAddress); } |