summaryrefslogtreecommitdiffstats
path: root/logic
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-01-12 23:04:05 +0100
committerPetr Mrázek <peterix@gmail.com>2014-01-12 23:04:05 +0100
commit54a9ee5eb03b6d1be6294e47179b9eb76f7a3949 (patch)
tree6454c95549fe42183d8b285a89517a734a6da5dc /logic
parentf552366e03cd6bd693850e24503bf3bf3559cfd0 (diff)
parent8950953d915ba234f62da93b520a1b82594cb9dc (diff)
downloadMultiMC-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.tar
MultiMC-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.tar.gz
MultiMC-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.tar.lz
MultiMC-54a9ee5eb03b6d1be6294e47179b9eb76f7a3949.tar.xz
MultiMC-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.cpp18
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();
}
}