From 7fe88c24f928fa0345a735d4b619ce7bc47a8719 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Sun, 21 Feb 2016 04:22:11 +0300 Subject: [PATCH] clean fixed TODOs --- src/qt/utilitydialog.cpp | 1 - src/wallet/wallet.cpp | 2 -- src/wallet/wallet.h | 1 - 3 files changed, 4 deletions(-) diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 3758f3d85..d288ecd68 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -128,7 +128,6 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) : ui->scrollArea->setVisible(false); ui->aboutLogo->setVisible(false); } - // TODO: fix theme dependent Gfx in About popup // Theme dependent Gfx in About popup QString helpMessageGfx = ":/images/" + GUIUtil::getThemeName() + "/about"; QPixmap pixmap = QPixmap(helpMessageGfx); diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 738bda0ed..151bbe66f 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2107,7 +2107,6 @@ CAmount CWallet::GetImmatureWatchOnlyBalance() const return nTotal; } -// TODO: check all usage void CWallet::AvailableCoins(vector& vCoins, bool fOnlyConfirmed, const CCoinControl *coinControl, bool fIncludeZeroValue, AvailableCoinsType coin_type, bool useIX) const { vCoins.clear(); @@ -2799,7 +2798,6 @@ bool CWallet::ConvertList(std::vector vCoins, std::vector& vecAm return true; } -// TODO: check all usage bool CWallet::CreateTransaction(const vector& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, CAmount& nFeeRet, int& nChangePosRet, std::string& strFailReason, const CCoinControl* coinControl, bool sign, AvailableCoinsType coin_type, bool useIX) { diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index cde6ea0f6..8155bdbaf 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -619,7 +619,6 @@ public: /** * populate vCoins with vector of available COutputs. */ - // TODO: check all usage void AvailableCoins(std::vector& vCoins, bool fOnlyConfirmed=true, const CCoinControl *coinControl = NULL, bool fIncludeZeroValue=false, AvailableCoinsType coin_type=ALL_COINS, bool useIX = false) const; /**