summaryrefslogtreecommitdiff
path: root/src/aboutdialog.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-01-18 19:51:58 +0100
committerTannin <devnull@localhost>2014-01-18 19:51:58 +0100
commite69210b3a78c4a6c63086d84e6bdb2c3b47d8944 (patch)
tree5bae6e217c9734b0403606bea3e419a955c1aca4 /src/aboutdialog.cpp
parent40d20ab294ad7afd4b5747b306e45d0f8712a386 (diff)
- when a download server returns a text file, it's assumed to be an error and the text displayed as an error
- save games can now be deleted from inside MO - bugfix: removing the pending download entry failed if the download-url request failed - bugfix: download manager didn't stop automatically resuming failed downloads under certain circumstances - bugfix: uninstalled downloads were treated as not-finished when refreshing the download list - bugfix: updating the filesystem watcher on the saves directory didn't work correctly
Diffstat (limited to 'src/aboutdialog.cpp')
-rw-r--r--src/aboutdialog.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/aboutdialog.cpp b/src/aboutdialog.cpp
index 94e4e54c..c7f95640 100644
--- a/src/aboutdialog.cpp
+++ b/src/aboutdialog.cpp
@@ -73,7 +73,6 @@ void AboutDialog::on_creditsList_currentItemChanged(QListWidgetItem *current, QL
auto iter = m_LicenseFiles.find(current->data(Qt::UserRole).toInt());
if (iter != m_LicenseFiles.end()) {
QString filePath = qApp->applicationDirPath() + "/license/" + iter->second;
-qDebug("%s", qPrintable(filePath));
QString text = MOBase::readFileText(filePath);
ui->licenseText->setText(text);
} else {