diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-01-12 23:04:05 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-01-12 23:04:05 +0100 |
commit | 54a9ee5eb03b6d1be6294e47179b9eb76f7a3949 (patch) | |
tree | 6454c95549fe42183d8b285a89517a734a6da5dc /logic | |
parent | f552366e03cd6bd693850e24503bf3bf3559cfd0 (diff) | |
parent | 8950953d915ba234f62da93b520a1b82594cb9dc (diff) | |
download | PrismLauncher-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.tar.gz PrismLauncher-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.tar.bz2 PrismLauncher-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.zip |
Merge branch 'feature_localization' of https://github.com/02JanDal/MultiMC5 into develop
Conflicts:
gui/dialogs/SettingsDialog.cpp
gui/dialogs/SettingsDialog.ui
Diffstat (limited to 'logic')
-rw-r--r-- | logic/NagUtils.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/logic/NagUtils.cpp b/logic/NagUtils.cpp index 6f81b3c7..c963a98a 100644 --- a/logic/NagUtils.cpp +++ b/logic/NagUtils.cpp @@ -23,15 +23,15 @@ void checkJVMArgs(QString jvmargs, QWidget *parent) if (jvmargs.contains("-XX:PermSize=") || jvmargs.contains(QRegExp("-Xm[sx]"))) { CustomMessageBox::selectable( - parent, parent->tr("JVM arguments warning"), - parent->tr("You tried to manually set a JVM memory option (using " - " \"-XX:PermSize\", \"-Xmx\" or \"-Xms\") - there" - " are dedicated boxes for these in the settings (Java" - " tab, in the Memory group at the top).\n" - "Your manual settings will be overridden by the" - " dedicated options.\n" - "This message will be displayed until you remove them" - " from the JVM arguments."), + parent, QObject::tr("JVM arguments warning"), + QObject::tr("You tried to manually set a JVM memory option (using " + " \"-XX:PermSize\", \"-Xmx\" or \"-Xms\") - there" + " are dedicated boxes for these in the settings (Java" + " tab, in the Memory group at the top).\n" + "Your manual settings will be overridden by the" + " dedicated options.\n" + "This message will be displayed until you remove them" + " from the JVM arguments."), QMessageBox::Warning)->exec(); } } |