32af5266cf
- try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility
27 lines
498 B
C++
27 lines
498 B
C++
#ifndef TRANSACTIONDESCDIALOG_H
|
|
#define TRANSACTIONDESCDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class TransactionDescDialog;
|
|
}
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QModelIndex;
|
|
QT_END_NAMESPACE
|
|
|
|
/** Dialog showing transaction details. */
|
|
class TransactionDescDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TransactionDescDialog(const QModelIndex &idx, QWidget *parent = 0);
|
|
~TransactionDescDialog();
|
|
|
|
private:
|
|
Ui::TransactionDescDialog *ui;
|
|
};
|
|
|
|
#endif // TRANSACTIONDESCDIALOG_H
|