Replaces numbered place marker %2 with %1.
[bitcoinplatinum.git] / src / qt / transactiondescdialog.h
blobf1371b385648b27f0b753b64b9d4bc31864e6aea
1 // Copyright (c) 2011-2014 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_QT_TRANSACTIONDESCDIALOG_H
6 #define BITCOIN_QT_TRANSACTIONDESCDIALOG_H
8 #include <QDialog>
10 namespace Ui {
11 class TransactionDescDialog;
14 QT_BEGIN_NAMESPACE
15 class QModelIndex;
16 QT_END_NAMESPACE
18 /** Dialog showing transaction details. */
19 class TransactionDescDialog : public QDialog
21 Q_OBJECT
23 public:
24 explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
25 ~TransactionDescDialog();
27 private:
28 Ui::TransactionDescDialog *ui;
31 #endif // BITCOIN_QT_TRANSACTIONDESCDIALOG_H