diff options
| author | Silarn <jrim@rimpo.org> | 2018-04-10 23:28:33 -0500 |
|---|---|---|
| committer | Silarn <jrim@rimpo.org> | 2018-04-10 23:28:33 -0500 |
| commit | c4bfee0089512e37a84742cf3981545bc0072413 (patch) | |
| tree | a445d84ca149f16a074118204b6dbe95c88cd7e6 /src/downloadmanager.cpp | |
| parent | 5a24d2b60cbe93cabb8070ddbdccb17801bee8eb (diff) | |
Prep for Qt 5.11 (backward-compatible)
Diffstat (limited to 'src/downloadmanager.cpp')
| -rw-r--r-- | src/downloadmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp index 8977492c..c935d20b 100644 --- a/src/downloadmanager.cpp +++ b/src/downloadmanager.cpp @@ -462,7 +462,7 @@ void DownloadManager::addNXMDownload(const QString &url) for (auto pair : m_PendingDownloads) {
if (pair.first == nxmInfo.modId() && pair.second == nxmInfo.fileId()) {
- qDebug("download requested is already started (mod id: %s, file id: %s)", qPrintable(nxmInfo.modId()), qPrintable(nxmInfo.fileId()));
+ qDebug("download requested is already started (mod id: %s, file id: %s)", qPrintable(QString(nxmInfo.modId())), qPrintable(QString(nxmInfo.fileId())));
QMessageBox::information(nullptr, tr("Already Started"), tr("A download for this mod file has already been queued."), QMessageBox::Ok);
return;
}
|
