diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-06 02:47:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-06 02:47:38 +0300 |
commit | 948ae2c65d97bc1ebe79faea8c76a1708e65380b (patch) | |
tree | f59998da5acb0716d0ae2e392b77309e96f85901 | |
parent | 0150901f5d6a7e0a3c7294560fbd8ac7925f419e (diff) | |
download | plus-948ae2c65d97bc1ebe79faea8c76a1708e65380b.tar.gz plus-948ae2c65d97bc1ebe79faea8c76a1708e65380b.tar.bz2 plus-948ae2c65d97bc1ebe79faea8c76a1708e65380b.tar.xz plus-948ae2c65d97bc1ebe79faea8c76a1708e65380b.zip |
Fix a bit code style.
-rw-r--r-- | src/localplayer.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp index 3d2d3a165..01e864a6b 100644 --- a/src/localplayer.cpp +++ b/src/localplayer.cpp @@ -1437,13 +1437,17 @@ void LocalPlayer::pickedUp(const ItemInfo &itemInfo, int amount, case PICKUP_BAD_ITEM: msg = N_("Tried to pick up nonexistent item."); break; - case PICKUP_TOO_HEAVY: msg = N_("Item is too heavy."); + case PICKUP_TOO_HEAVY: + msg = N_("Item is too heavy."); break; - case PICKUP_TOO_FAR: msg = N_("Item is too far away."); + case PICKUP_TOO_FAR: + msg = N_("Item is too far away."); break; - case PICKUP_INV_FULL: msg = N_("Inventory is full."); + case PICKUP_INV_FULL: + msg = N_("Inventory is full."); break; - case PICKUP_STACK_FULL: msg = N_("Stack is too big."); + case PICKUP_STACK_FULL: + msg = N_("Stack is too big."); break; case PICKUP_DROP_STEAL: msg = N_("Item belongs to someone else."); |