summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-05-22 20:43:08 +0200
committerTannin <devnull@localhost>2013-05-22 20:43:08 +0200
commit0ae7d4753cf607d5de11f0f2b53be478d021cfcd (patch)
treeb4cc69705d3b2188d6fb4192d726f72250166d6f
parentcdea0c9da56b20bce0213310ba29fbf6df045443 (diff)
- diagnosis plugin now reports file in overwrite as a problem
- bugfix: GetModuleFileName returned the wrong string length - bugfix: Vector Exception Handler no longer stops hook.dll on recoverable errors
-rw-r--r--src/mainwindow.cpp4
-rw-r--r--src/problemsdialog.cpp2
2 files changed, 1 insertions, 5 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index bbc336a7..2ad06a73 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -2429,10 +2429,6 @@ void MainWindow::refreshFilters()
void MainWindow::renameMod_clicked()
{
try {
-/* QModelIndex treeIdx = m_ModListGroupProxy->mapFromSource(m_ModListSortProxy->mapFromSource(m_ModList.index(m_ContextRow, 0)));
- ui->modList->setCurrentIndex(treeIdx);
- ui->modList->edit(treeIdx);*/
-
ui->modList->edit(ui->modList->currentIndex());
} catch (const std::exception &e) {
reportError(tr("failed to rename mod: %1").arg(e.what()));
diff --git a/src/problemsdialog.cpp b/src/problemsdialog.cpp
index e0837f45..8173e1e2 100644
--- a/src/problemsdialog.cpp
+++ b/src/problemsdialog.cpp
@@ -24,7 +24,7 @@ ProblemsDialog::ProblemsDialog(std::vector<MOBase::IPluginDiagnose *> diagnosePl
if (diagnose->hasGuidedFix(key)) {
ui->problemsWidget->setItemWidget(newItem, 1, new QPushButton(tr("Fix")));
} else {
- newItem->setText(1, tr("No guided fix :("));
+ newItem->setText(1, tr("No guided fix"));
}
ui->problemsWidget->addTopLevelItem(newItem);
}