clean fixed TODOs

This commit is contained in:
UdjinM6 2016-02-21 04:22:11 +03:00
parent 6ec64f8ff6
commit 7fe88c24f9
3 changed files with 0 additions and 4 deletions

View File

@ -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);

View File

@ -2107,7 +2107,6 @@ CAmount CWallet::GetImmatureWatchOnlyBalance() const
return nTotal;
}
// TODO: check all usage
void CWallet::AvailableCoins(vector<COutput>& 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<CTxIn> vCoins, std::vector<CAmount>& vecAm
return true;
}
// TODO: check all usage
bool CWallet::CreateTransaction(const vector<CRecipient>& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, CAmount& nFeeRet,
int& nChangePosRet, std::string& strFailReason, const CCoinControl* coinControl, bool sign, AvailableCoinsType coin_type, bool useIX)
{

View File

@ -619,7 +619,6 @@ public:
/**
* populate vCoins with vector of available COutputs.
*/
// TODO: check all usage
void AvailableCoins(std::vector<COutput>& vCoins, bool fOnlyConfirmed=true, const CCoinControl *coinControl = NULL, bool fIncludeZeroValue=false, AvailableCoinsType coin_type=ALL_COINS, bool useIX = false) const;
/**