diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-01 21:24:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-01 21:54:48 +0300 |
commit | f5e3f241af190e487c0499dae0efc12e9ae2d202 (patch) | |
tree | 295bac3fa27cfff3c78d664b49b01ff51b723b77 /src/gui/windows/mailviewwindow.cpp | |
parent | 13c5cc47aca547c1f3ca02e26672557823b844ee (diff) | |
download | manaverse-f5e3f241af190e487c0499dae0efc12e9ae2d202.tar.gz manaverse-f5e3f241af190e487c0499dae0efc12e9ae2d202.tar.bz2 manaverse-f5e3f241af190e487c0499dae0efc12e9ae2d202.tar.xz manaverse-f5e3f241af190e487c0499dae0efc12e9ae2d202.zip |
Fix code style.
Diffstat (limited to 'src/gui/windows/mailviewwindow.cpp')
-rw-r--r-- | src/gui/windows/mailviewwindow.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/windows/mailviewwindow.cpp b/src/gui/windows/mailviewwindow.cpp index 03503bfac..3f349ef42 100644 --- a/src/gui/windows/mailviewwindow.cpp +++ b/src/gui/windows/mailviewwindow.cpp @@ -20,7 +20,6 @@ #include "gui/windows/mailviewwindow.h" -#include "configuration.h" #include "settings.h" #include "net/mail2handler.h" @@ -40,6 +39,7 @@ #include "utils/delete2.h" #include "utils/gettext.h" +#include "utils/stringutils.h" #include "resources/inventory/inventory.h" @@ -109,7 +109,7 @@ MailViewWindow::MailViewWindow(MailMessage *const message, if (message->money != 0) { // TRANSLATORS: mail view window label - mMoneyLabel = new Label(this, strprintf("%s %d", _("Money:"), + mMoneyLabel = new Label(this, strprintf("%s %" PRId64, _("Money:"), message->money)); placer(0, n++, mMoneyLabel); } @@ -170,7 +170,7 @@ void MailViewWindow::action(const ActionEvent &event) } else { - mailHandler->getAttach(mMessage->id); + mailHandler->getAttach(CAST_S32(mMessage->id)); } } else if (eventId == "money") @@ -239,7 +239,7 @@ void MailViewWindow::removeItems(const int64_t mailId) mMessage->type = static_cast<MailMessageType::Type>( CAST_S32(mMessage->type) ^ CAST_S32(MailMessageType::Item)); updateAttachButton(); - if (mailWindow) + if (mailWindow != nullptr) mailWindow->refreshMailNames(); } @@ -257,13 +257,13 @@ void MailViewWindow::removeMoney(const int64_t mailId) if (mMoneyLabel == nullptr) return; - if (mGetMoneyButton) + if (mGetMoneyButton != nullptr) mGetMoneyButton->setVisible(Visible_false); mMoneyLabel->setCaption(strprintf("%s %d", // TRANSLATORS: mail view window label _("Money:"), 0)); - if (mailWindow) + if (mailWindow != nullptr) mailWindow->refreshMailNames(); } |