summaryrefslogtreecommitdiff
path: root/src/net/ea/playerhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-18 21:26:04 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-18 21:26:04 +0300
commite21479ccc48ed8383a6ab72f45c43e12e8dffa69 (patch)
tree2882139edd93b0e3ae72fc541b366ed7246e46b2 /src/net/ea/playerhandler.cpp
parent506a064c94e44d4f896fa9b2dc74d30e7f7f8c33 (diff)
downloadplus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.tar.gz
plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.tar.bz2
plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.tar.xz
plus-e21479ccc48ed8383a6ab72f45c43e12e8dffa69.zip
Remove default values from okdialog constructor.
Diffstat (limited to 'src/net/ea/playerhandler.cpp')
-rw-r--r--src/net/ea/playerhandler.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/net/ea/playerhandler.cpp b/src/net/ea/playerhandler.cpp
index 225162e9a..f7da2d321 100644
--- a/src/net/ea/playerhandler.cpp
+++ b/src/net/ea/playerhandler.cpp
@@ -273,7 +273,8 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg)
// TRANSLATORS: weight message
_("You are carrying more than "
"half your weight. You are "
- "unable to regain health."), DialogType::OK, false);
+ "unable to regain health."), DialogType::OK,
+ false, true, nullptr, 260);
weightNotice->addActionListener(
&weightListener);
}
@@ -285,7 +286,8 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg)
// TRANSLATORS: weight message
_("You are carrying less than "
"half your weight. You "
- "can regain health."), DialogType::OK, false);
+ "can regain health."), DialogType::OK,
+ false, true, nullptr, 260);
weightNotice->addActionListener(
&weightListener);
}
@@ -366,7 +368,8 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg)
{
// TRANSLATORS: message header
deathNotice = new OkDialog(_("Message"),
- DeadDB::getRandomString(), DialogType::OK, false);
+ DeadDB::getRandomString(), DialogType::OK,
+ false, true, nullptr, 260);
deathNotice->addActionListener(&deathListener);
if (localPlayer->getCurrentAction() != BeingAction::DEAD)
{