diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-10-30 00:56:43 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-10-30 00:56:43 +0100 |
commit | f941119fbd89b5677a2895eee3232fa76389b4b5 (patch) | |
tree | 7d761d3c8189c06dda83e3fa88f281a24ab46e4b /gui/ModEditDialogCommon.cpp | |
parent | c46292c9b1c153f2d17554690e90db1c8efe4d23 (diff) | |
parent | 44823324f9f489adf957a459bac5dd4d0693e85e (diff) | |
download | PrismLauncher-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.gz PrismLauncher-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.bz2 PrismLauncher-f941119fbd89b5677a2895eee3232fa76389b4b5.zip |
Merge branch 'develop'
Diffstat (limited to 'gui/ModEditDialogCommon.cpp')
-rw-r--r-- | gui/ModEditDialogCommon.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/ModEditDialogCommon.cpp b/gui/ModEditDialogCommon.cpp index 692ac0c4..873cd8ea 100644 --- a/gui/ModEditDialogCommon.cpp +++ b/gui/ModEditDialogCommon.cpp @@ -1,4 +1,5 @@ #include "ModEditDialogCommon.h" +#include "CustomMessageBox.h" #include <QDesktopServices> #include <QMessageBox> #include <QString> @@ -33,8 +34,8 @@ void showWebsiteForMod(QWidget *parentDlg, Mod &m) } else { - QMessageBox::warning( - parentDlg, parentDlg->tr("How sad!"), - parentDlg->tr("The mod author didn't provide a website link for this mod.")); + CustomMessageBox::selectable(parentDlg, parentDlg->tr("How sad!"), + parentDlg->tr("The mod author didn't provide a website link for this mod."), + QMessageBox::Warning); } } |