diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-08-08 17:38:17 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-08-08 17:38:17 +0200 |
commit | b0849613bf02b61774b23804c8feed54aa88474a (patch) | |
tree | e5a9c69413609d241f69b743394c733192685aff /src/qt/transactiondesc.h | |
parent | fb390d3505c9d0ad8f88cc9a26a2f8190254eda5 (diff) |
QtUI code cleanup / comment improvements
Diffstat (limited to 'src/qt/transactiondesc.h')
-rw-r--r-- | src/qt/transactiondesc.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/qt/transactiondesc.h b/src/qt/transactiondesc.h index fde861b6fb..257b2cbb89 100644 --- a/src/qt/transactiondesc.h +++ b/src/qt/transactiondesc.h @@ -1,16 +1,24 @@ #ifndef TRANSACTIONDESC_H #define TRANSACTIONDESC_H +#include <QString> +#include <QObject> #include <string> class CWallet; class CWalletTx; -class TransactionDesc +class TransactionDesc: public QObject { public: - /* Provide human-readable extended HTML description of a transaction */ - static std::string toHTML(CWallet *wallet, CWalletTx &wtx); + // Provide human-readable extended HTML description of a transaction + static QString toHTML(CWallet *wallet, CWalletTx &wtx); +private: + TransactionDesc() {} + + static QString HtmlEscape(const QString& str, bool fMultiLine=false); + static QString HtmlEscape(const std::string &str, bool fMultiLine=false); + static QString FormatTxStatus(const CWalletTx& wtx); }; #endif // TRANSACTIONDESC_H |