Update CMakeLists.txt - play with openssl
[novacoin.git] / src / qt / transactiondesc.h
index 257b2cb..2523f9a 100644 (file)
@@ -8,16 +8,16 @@
 class CWallet;
 class CWalletTx;
 
+/** Provide a human-readable extended HTML description of a transaction.
+ */
 class TransactionDesc: public QObject
 {
+    Q_OBJECT
 public:
-    // 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);
 };