mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
scripted-diff: Remove Q_FOREACH #10502
-BEGIN VERIFY SCRIPT- sed -i 's/Q_FOREACH *(\(.*\),/for (\1 :/' ./src/*.h ./src/*.cpp ./src/*/*.h ./src/*/*.cpp ./src/*/*/*.h ./src/*/*/*.cpp ; -END VERIFY SCRIPT-
This commit is contained in:
parent
a15d7405e3
commit
0d52db844c
@ -280,7 +280,7 @@ void AddressBookPage::done(int retval)
|
|||||||
// Figure out which address was selected, and return it
|
// Figure out which address was selected, and return it
|
||||||
QModelIndexList indexes = table->selectionModel()->selectedRows(AddressTableModel::Address);
|
QModelIndexList indexes = table->selectionModel()->selectedRows(AddressTableModel::Address);
|
||||||
|
|
||||||
Q_FOREACH (const QModelIndex& index, indexes) {
|
for (const QModelIndex& index : indexes) {
|
||||||
QVariant address = table->model()->data(index);
|
QVariant address = table->model()->data(index);
|
||||||
returnValue = address.toString();
|
returnValue = address.toString();
|
||||||
}
|
}
|
||||||
|
@ -1254,7 +1254,7 @@ void BitcoinGUI::dropEvent(QDropEvent *event)
|
|||||||
{
|
{
|
||||||
if(event->mimeData()->hasUrls())
|
if(event->mimeData()->hasUrls())
|
||||||
{
|
{
|
||||||
Q_FOREACH(const QUrl &uri, event->mimeData()->urls())
|
for (const QUrl &uri : event->mimeData()->urls())
|
||||||
{
|
{
|
||||||
Q_EMIT receivedURI(uri.toString());
|
Q_EMIT receivedURI(uri.toString());
|
||||||
}
|
}
|
||||||
@ -1476,7 +1476,7 @@ UnitDisplayStatusBarControl::UnitDisplayStatusBarControl(const PlatformStyle *pl
|
|||||||
QList<BitcoinUnits::Unit> units = BitcoinUnits::availableUnits();
|
QList<BitcoinUnits::Unit> units = BitcoinUnits::availableUnits();
|
||||||
int max_width = 0;
|
int max_width = 0;
|
||||||
const QFontMetrics fm(font());
|
const QFontMetrics fm(font());
|
||||||
Q_FOREACH (const BitcoinUnits::Unit unit, units)
|
for (const BitcoinUnits::Unit unit : units)
|
||||||
{
|
{
|
||||||
max_width = qMax(max_width, fm.width(BitcoinUnits::name(unit)));
|
max_width = qMax(max_width, fm.width(BitcoinUnits::name(unit)));
|
||||||
}
|
}
|
||||||
@ -1495,7 +1495,7 @@ void UnitDisplayStatusBarControl::mousePressEvent(QMouseEvent *event)
|
|||||||
void UnitDisplayStatusBarControl::createContextMenu()
|
void UnitDisplayStatusBarControl::createContextMenu()
|
||||||
{
|
{
|
||||||
menu = new QMenu(this);
|
menu = new QMenu(this);
|
||||||
Q_FOREACH(BitcoinUnits::Unit u, BitcoinUnits::availableUnits())
|
for (BitcoinUnits::Unit u : BitcoinUnits::availableUnits())
|
||||||
{
|
{
|
||||||
QAction *menuAction = new QAction(QString(BitcoinUnits::name(u)), this);
|
QAction *menuAction = new QAction(QString(BitcoinUnits::name(u)), this);
|
||||||
menuAction->setData(QVariant(u));
|
menuAction->setData(QVariant(u));
|
||||||
|
@ -478,7 +478,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)
|
|||||||
CAmount nPayAmount = 0;
|
CAmount nPayAmount = 0;
|
||||||
bool fDust = false;
|
bool fDust = false;
|
||||||
CMutableTransaction txDummy;
|
CMutableTransaction txDummy;
|
||||||
Q_FOREACH(const CAmount &amount, CoinControlDialog::payAmounts)
|
for (const CAmount &amount : CoinControlDialog::payAmounts)
|
||||||
{
|
{
|
||||||
nPayAmount += amount;
|
nPayAmount += amount;
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) :
|
|||||||
|
|
||||||
ui->lang->setToolTip(ui->lang->toolTip().arg(tr(PACKAGE_NAME)));
|
ui->lang->setToolTip(ui->lang->toolTip().arg(tr(PACKAGE_NAME)));
|
||||||
ui->lang->addItem(QString("(") + tr("default") + QString(")"), QVariant(""));
|
ui->lang->addItem(QString("(") + tr("default") + QString(")"), QVariant(""));
|
||||||
Q_FOREACH(const QString &langStr, translations.entryList())
|
for (const QString &langStr : translations.entryList())
|
||||||
{
|
{
|
||||||
QLocale locale(langStr);
|
QLocale locale(langStr);
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ void PaymentServer::LoadRootCAs(X509_STORE* _store)
|
|||||||
int nRootCerts = 0;
|
int nRootCerts = 0;
|
||||||
const QDateTime currentTime = QDateTime::currentDateTime();
|
const QDateTime currentTime = QDateTime::currentDateTime();
|
||||||
|
|
||||||
Q_FOREACH (const QSslCertificate& cert, certList) {
|
for (const QSslCertificate& cert : certList) {
|
||||||
// Don't log NULL certificates
|
// Don't log NULL certificates
|
||||||
if (cert.isNull())
|
if (cert.isNull())
|
||||||
continue;
|
continue;
|
||||||
@ -268,7 +268,7 @@ void PaymentServer::ipcParseCommandLine(int argc, char* argv[])
|
|||||||
bool PaymentServer::ipcSendCommandLine()
|
bool PaymentServer::ipcSendCommandLine()
|
||||||
{
|
{
|
||||||
bool fResult = false;
|
bool fResult = false;
|
||||||
Q_FOREACH (const QString& r, savedPaymentRequests)
|
for (const QString& r : savedPaymentRequests)
|
||||||
{
|
{
|
||||||
QLocalSocket* socket = new QLocalSocket();
|
QLocalSocket* socket = new QLocalSocket();
|
||||||
socket->connectToServer(ipcServerName(), QIODevice::WriteOnly);
|
socket->connectToServer(ipcServerName(), QIODevice::WriteOnly);
|
||||||
@ -393,7 +393,7 @@ void PaymentServer::uiReady()
|
|||||||
initNetManager();
|
initNetManager();
|
||||||
|
|
||||||
saveURIs = false;
|
saveURIs = false;
|
||||||
Q_FOREACH (const QString& s, savedPaymentRequests)
|
for (const QString& s : savedPaymentRequests)
|
||||||
{
|
{
|
||||||
handleURIOrFile(s);
|
handleURIOrFile(s);
|
||||||
}
|
}
|
||||||
@ -556,7 +556,7 @@ bool PaymentServer::processPaymentRequest(const PaymentRequestPlus& request, Sen
|
|||||||
QList<std::pair<CScript, CAmount> > sendingTos = request.getPayTo();
|
QList<std::pair<CScript, CAmount> > sendingTos = request.getPayTo();
|
||||||
QStringList addresses;
|
QStringList addresses;
|
||||||
|
|
||||||
Q_FOREACH(const PAIRTYPE(CScript, CAmount)& sendingTo, sendingTos) {
|
for (const PAIRTYPE(CScript, CAmount)& sendingTo : sendingTos) {
|
||||||
// Extract and check destination addresses
|
// Extract and check destination addresses
|
||||||
CTxDestination dest;
|
CTxDestination dest;
|
||||||
if (ExtractDestination(sendingTo.first, dest)) {
|
if (ExtractDestination(sendingTo.first, dest)) {
|
||||||
@ -743,7 +743,7 @@ void PaymentServer::reportSslErrors(QNetworkReply* reply, const QList<QSslError>
|
|||||||
Q_UNUSED(reply);
|
Q_UNUSED(reply);
|
||||||
|
|
||||||
QString errString;
|
QString errString;
|
||||||
Q_FOREACH (const QSslError& err, errs) {
|
for (const QSslError& err : errs) {
|
||||||
qWarning() << "PaymentServer::reportSslErrors: " << err;
|
qWarning() << "PaymentServer::reportSslErrors: " << err;
|
||||||
errString += err.errorString() + "\n";
|
errString += err.errorString() + "\n";
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,7 @@ public:
|
|||||||
#if QT_VERSION >= 0x040700
|
#if QT_VERSION >= 0x040700
|
||||||
cachedNodeStats.reserve(vstats.size());
|
cachedNodeStats.reserve(vstats.size());
|
||||||
#endif
|
#endif
|
||||||
Q_FOREACH (const CNodeStats& nodestats, vstats)
|
for (const CNodeStats& nodestats : vstats)
|
||||||
{
|
{
|
||||||
CNodeCombinedStats stats;
|
CNodeCombinedStats stats;
|
||||||
stats.nodeStateStats.nMisbehavior = 0;
|
stats.nodeStateStats.nMisbehavior = 0;
|
||||||
@ -91,7 +91,7 @@ public:
|
|||||||
// build index map
|
// build index map
|
||||||
mapNodeRows.clear();
|
mapNodeRows.clear();
|
||||||
int row = 0;
|
int row = 0;
|
||||||
Q_FOREACH (const CNodeCombinedStats& stats, cachedNodeStats)
|
for (const CNodeCombinedStats& stats : cachedNodeStats)
|
||||||
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
|
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ void MakeSingleColorImage(QImage& img, const QColor& colorbase)
|
|||||||
QIcon ColorizeIcon(const QIcon& ico, const QColor& colorbase)
|
QIcon ColorizeIcon(const QIcon& ico, const QColor& colorbase)
|
||||||
{
|
{
|
||||||
QIcon new_ico;
|
QIcon new_ico;
|
||||||
Q_FOREACH(const QSize sz, ico.availableSizes())
|
for (const QSize sz : ico.availableSizes())
|
||||||
{
|
{
|
||||||
QImage img(ico.pixmap(sz).toImage());
|
QImage img(ico.pixmap(sz).toImage());
|
||||||
MakeSingleColorImage(img, colorbase);
|
MakeSingleColorImage(img, colorbase);
|
||||||
|
@ -192,7 +192,7 @@ void ReceiveCoinsDialog::on_showRequestButton_clicked()
|
|||||||
return;
|
return;
|
||||||
QModelIndexList selection = ui->recentRequestsView->selectionModel()->selectedRows();
|
QModelIndexList selection = ui->recentRequestsView->selectionModel()->selectedRows();
|
||||||
|
|
||||||
Q_FOREACH (const QModelIndex& index, selection) {
|
for (const QModelIndex& index : selection) {
|
||||||
on_recentRequestsView_doubleClicked(index);
|
on_recentRequestsView_doubleClicked(index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -329,7 +329,7 @@ void SendCoinsDialog::send(QList<SendCoinsRecipient> recipients, QString strFee,
|
|||||||
|
|
||||||
// Format confirmation message
|
// Format confirmation message
|
||||||
QStringList formatted;
|
QStringList formatted;
|
||||||
Q_FOREACH(const SendCoinsRecipient &rcp, currentTransaction.getRecipients())
|
for (const SendCoinsRecipient &rcp : currentTransaction.getRecipients())
|
||||||
{
|
{
|
||||||
// generate bold amount string
|
// generate bold amount string
|
||||||
QString amount = "<b>" + BitcoinUnits::formatHtmlWithUnit(model->getOptionsModel()->getDisplayUnit(), rcp.amount);
|
QString amount = "<b>" + BitcoinUnits::formatHtmlWithUnit(model->getOptionsModel()->getDisplayUnit(), rcp.amount);
|
||||||
@ -386,7 +386,7 @@ void SendCoinsDialog::send(QList<SendCoinsRecipient> recipients, QString strFee,
|
|||||||
questionString.append("<hr />");
|
questionString.append("<hr />");
|
||||||
CAmount totalAmount = currentTransaction.getTotalTransactionAmount() + txFee;
|
CAmount totalAmount = currentTransaction.getTotalTransactionAmount() + txFee;
|
||||||
QStringList alternativeUnits;
|
QStringList alternativeUnits;
|
||||||
Q_FOREACH(BitcoinUnits::Unit u, BitcoinUnits::availableUnits())
|
for (BitcoinUnits::Unit u : BitcoinUnits::availableUnits())
|
||||||
{
|
{
|
||||||
if(u != model->getOptionsModel()->getDisplayUnit())
|
if(u != model->getOptionsModel()->getDisplayUnit())
|
||||||
alternativeUnits.append(BitcoinUnits::formatHtmlWithUnit(u, totalAmount));
|
alternativeUnits.append(BitcoinUnits::formatHtmlWithUnit(u, totalAmount));
|
||||||
|
@ -192,7 +192,7 @@ void SplashScreen::unsubscribeFromCoreSignals()
|
|||||||
uiInterface.InitMessage.disconnect(boost::bind(InitMessage, this, _1));
|
uiInterface.InitMessage.disconnect(boost::bind(InitMessage, this, _1));
|
||||||
uiInterface.ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2));
|
uiInterface.ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2));
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
Q_FOREACH(CWallet* const & pwallet, connectedWallets) {
|
for (CWallet* const & pwallet : connectedWallets) {
|
||||||
pwallet->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2));
|
pwallet->ShowProgress.disconnect(boost::bind(ShowProgress, this, _1, _2));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -196,7 +196,7 @@ void PaymentServerTests::paymentServerTests()
|
|||||||
QVERIFY(r.paymentRequest.IsInitialized());
|
QVERIFY(r.paymentRequest.IsInitialized());
|
||||||
// Extract address and amount from the request
|
// Extract address and amount from the request
|
||||||
QList<std::pair<CScript, CAmount> > sendingTos = r.paymentRequest.getPayTo();
|
QList<std::pair<CScript, CAmount> > sendingTos = r.paymentRequest.getPayTo();
|
||||||
Q_FOREACH (const PAIRTYPE(CScript, CAmount)& sendingTo, sendingTos) {
|
for (const PAIRTYPE(CScript, CAmount)& sendingTo : sendingTos) {
|
||||||
CTxDestination dest;
|
CTxDestination dest;
|
||||||
if (ExtractDestination(sendingTo.first, dest))
|
if (ExtractDestination(sendingTo.first, dest))
|
||||||
QCOMPARE(PaymentServer::verifyAmount(sendingTo.second), false);
|
QCOMPARE(PaymentServer::verifyAmount(sendingTo.second), false);
|
||||||
|
@ -155,7 +155,7 @@ void TrafficGraphWidget::updateRates()
|
|||||||
|
|
||||||
if (updated){
|
if (updated){
|
||||||
float tmax = DEFAULT_SAMPLE_HEIGHT;
|
float tmax = DEFAULT_SAMPLE_HEIGHT;
|
||||||
Q_FOREACH(const TrafficSample& sample, trafficGraphData.getCurrentRangeQueueWithAverageBandwidth()) {
|
for (const TrafficSample& sample : trafficGraphData.getCurrentRangeQueueWithAverageBandwidth()) {
|
||||||
if(sample.in > tmax) tmax = sample.in;
|
if(sample.in > tmax) tmax = sample.in;
|
||||||
if(sample.out > tmax) tmax = sample.out;
|
if(sample.out > tmax) tmax = sample.out;
|
||||||
}
|
}
|
||||||
|
@ -261,14 +261,14 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, TransactionReco
|
|||||||
strHTML += "<b>" + tr("Transaction total size") + ":</b> " + QString::number(wtx.tx->GetTotalSize()) + " bytes<br>";
|
strHTML += "<b>" + tr("Transaction total size") + ":</b> " + QString::number(wtx.tx->GetTotalSize()) + " bytes<br>";
|
||||||
|
|
||||||
// Message from normal dash:URI (dash:XyZ...?message=example)
|
// Message from normal dash:URI (dash:XyZ...?message=example)
|
||||||
Q_FOREACH (const PAIRTYPE(std::string, std::string)& r, wtx.vOrderForm)
|
for (const PAIRTYPE(std::string, std::string)& r : wtx.vOrderForm)
|
||||||
if (r.first == "Message")
|
if (r.first == "Message")
|
||||||
strHTML += "<br><b>" + tr("Message") + ":</b><br>" + GUIUtil::HtmlEscape(r.second, true) + "<br>";
|
strHTML += "<br><b>" + tr("Message") + ":</b><br>" + GUIUtil::HtmlEscape(r.second, true) + "<br>";
|
||||||
|
|
||||||
//
|
//
|
||||||
// PaymentRequest info:
|
// PaymentRequest info:
|
||||||
//
|
//
|
||||||
Q_FOREACH (const PAIRTYPE(std::string, std::string)& r, wtx.vOrderForm)
|
for (const PAIRTYPE(std::string, std::string)& r : wtx.vOrderForm)
|
||||||
{
|
{
|
||||||
if (r.first == "PaymentRequest")
|
if (r.first == "PaymentRequest")
|
||||||
{
|
{
|
||||||
|
@ -144,7 +144,7 @@ public:
|
|||||||
{
|
{
|
||||||
parent->beginInsertRows(QModelIndex(), lowerIndex, lowerIndex+toInsert.size()-1);
|
parent->beginInsertRows(QModelIndex(), lowerIndex, lowerIndex+toInsert.size()-1);
|
||||||
int insert_idx = lowerIndex;
|
int insert_idx = lowerIndex;
|
||||||
Q_FOREACH(const TransactionRecord &rec, toInsert)
|
for (const TransactionRecord &rec : toInsert)
|
||||||
{
|
{
|
||||||
cachedWallet.insert(insert_idx, rec);
|
cachedWallet.insert(insert_idx, rec);
|
||||||
insert_idx += 1;
|
insert_idx += 1;
|
||||||
|
@ -574,7 +574,7 @@ void TransactionView::computeSum()
|
|||||||
return;
|
return;
|
||||||
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
|
QModelIndexList selection = transactionView->selectionModel()->selectedRows();
|
||||||
|
|
||||||
Q_FOREACH (QModelIndex index, selection){
|
for (QModelIndex index : selection){
|
||||||
amount += index.data(TransactionTableModel::AmountRole).toLongLong();
|
amount += index.data(TransactionTableModel::AmountRole).toLongLong();
|
||||||
}
|
}
|
||||||
QString strAmount(BitcoinUnits::formatWithUnit(nDisplayUnit, amount, true, BitcoinUnits::separatorAlways));
|
QString strAmount(BitcoinUnits::formatWithUnit(nDisplayUnit, amount, true, BitcoinUnits::separatorAlways));
|
||||||
|
@ -108,7 +108,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, HelpMode helpMode) :
|
|||||||
QTextCharFormat bold;
|
QTextCharFormat bold;
|
||||||
bold.setFontWeight(QFont::Bold);
|
bold.setFontWeight(QFont::Bold);
|
||||||
|
|
||||||
Q_FOREACH (const QString &line, coreOptions.split("\n")) {
|
for (const QString &line : coreOptions.split("\n")) {
|
||||||
if (line.startsWith(" -"))
|
if (line.startsWith(" -"))
|
||||||
{
|
{
|
||||||
cursor.currentTable()->appendRows(1);
|
cursor.currentTable()->appendRows(1);
|
||||||
|
@ -256,7 +256,7 @@ WalletModel::SendCoinsReturn WalletModel::prepareTransaction(WalletModelTransact
|
|||||||
int nAddresses = 0;
|
int nAddresses = 0;
|
||||||
|
|
||||||
// Pre-check input data for validity
|
// Pre-check input data for validity
|
||||||
Q_FOREACH(const SendCoinsRecipient &rcp, recipients)
|
for (const SendCoinsRecipient &rcp : recipients)
|
||||||
{
|
{
|
||||||
if (rcp.fSubtractFeeFromAmount)
|
if (rcp.fSubtractFeeFromAmount)
|
||||||
fSubtractFeeFromAmount = true;
|
fSubtractFeeFromAmount = true;
|
||||||
@ -367,7 +367,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
|
|||||||
CWalletTx *newTx = transaction.getTransaction();
|
CWalletTx *newTx = transaction.getTransaction();
|
||||||
QList<SendCoinsRecipient> recipients = transaction.getRecipients();
|
QList<SendCoinsRecipient> recipients = transaction.getRecipients();
|
||||||
|
|
||||||
Q_FOREACH(const SendCoinsRecipient &rcp, recipients)
|
for (const SendCoinsRecipient &rcp : recipients)
|
||||||
{
|
{
|
||||||
if (rcp.paymentRequest.IsInitialized())
|
if (rcp.paymentRequest.IsInitialized())
|
||||||
{
|
{
|
||||||
@ -400,7 +400,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
|
|||||||
|
|
||||||
// Add addresses / update labels that we've sent to to the address book,
|
// Add addresses / update labels that we've sent to to the address book,
|
||||||
// and emit coinsSent signal for each recipient
|
// and emit coinsSent signal for each recipient
|
||||||
Q_FOREACH(const SendCoinsRecipient &rcp, transaction.getRecipients())
|
for (const SendCoinsRecipient &rcp : transaction.getRecipients())
|
||||||
{
|
{
|
||||||
// Don't touch the address book when we have a payment request
|
// Don't touch the address book when we have a payment request
|
||||||
if (!rcp.paymentRequest.IsInitialized())
|
if (!rcp.paymentRequest.IsInitialized())
|
||||||
|
@ -88,7 +88,7 @@ void WalletModelTransaction::reassignAmounts()
|
|||||||
CAmount WalletModelTransaction::getTotalTransactionAmount()
|
CAmount WalletModelTransaction::getTotalTransactionAmount()
|
||||||
{
|
{
|
||||||
CAmount totalTransactionAmount = 0;
|
CAmount totalTransactionAmount = 0;
|
||||||
Q_FOREACH(const SendCoinsRecipient &rcp, recipients)
|
for (const SendCoinsRecipient &rcp : recipients)
|
||||||
{
|
{
|
||||||
totalTransactionAmount += rcp.amount;
|
totalTransactionAmount += rcp.amount;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user