Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs
[novacoin.git] / src / qt / transactiondescdialog.h
1 #ifndef TRANSACTIONDESCDIALOG_H
2 #define TRANSACTIONDESCDIALOG_H
3
4 #include <QDialog>
5
6 namespace Ui {
7     class TransactionDescDialog;
8 }
9 QT_BEGIN_NAMESPACE
10 class QModelIndex;
11 QT_END_NAMESPACE
12
13 /** Dialog showing transaction details. */
14 class TransactionDescDialog : public QDialog
15 {
16     Q_OBJECT
17
18 public:
19     explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
20     ~TransactionDescDialog();
21
22 private:
23     Ui::TransactionDescDialog *ui;
24 };
25
26 #endif // TRANSACTIONDESCDIALOG_H