summaryrefslogtreecommitdiff
path: root/src/listeners/renamelistener.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-06 23:34:34 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-07 19:23:40 +0300
commit36ba43d6ea38062b17f7e63ef659962bfc51c64d (patch)
tree190156cb88b13a38a6d13c69ee0742cc078065a1 /src/listeners/renamelistener.cpp
parentf1518dd8476c968a43fa57cfb06198e290a4f77a (diff)
downloadplus-36ba43d6ea38062b17f7e63ef659962bfc51c64d.tar.gz
plus-36ba43d6ea38062b17f7e63ef659962bfc51c64d.tar.bz2
plus-36ba43d6ea38062b17f7e63ef659962bfc51c64d.tar.xz
plus-36ba43d6ea38062b17f7e63ef659962bfc51c64d.zip
Fix clang-tidy check readability-implicit-bool-cast.
Diffstat (limited to 'src/listeners/renamelistener.cpp')
-rw-r--r--src/listeners/renamelistener.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/listeners/renamelistener.cpp b/src/listeners/renamelistener.cpp
index f092f0369..b8bc19883 100644
--- a/src/listeners/renamelistener.cpp
+++ b/src/listeners/renamelistener.cpp
@@ -41,7 +41,7 @@ RenameListener::RenameListener() :
void RenameListener::setMapItem(const MapItem *const mapItem)
{
- if (mapItem)
+ if (mapItem != nullptr)
{
mMapItemX = mapItem->getX();
mMapItemY = mapItem->getY();
@@ -55,25 +55,25 @@ void RenameListener::setMapItem(const MapItem *const mapItem)
void RenameListener::action(const ActionEvent &event)
{
- if (event.getId() == "ok" && viewport && mDialog)
+ if (event.getId() == "ok" && (viewport != nullptr) && (mDialog != nullptr))
{
const Map *const map = viewport->getMap();
- if (!map)
+ if (map == nullptr)
return;
const SpecialLayer *const sl = map->getSpecialLayer();
MapItem *item = nullptr;
- if (sl)
+ if (sl != nullptr)
{
item = sl->getTile(mMapItemX, mMapItemY);
- if (item)
+ if (item != nullptr)
item->setComment(mDialog->getText());
}
item = map->findPortalXY(mMapItemX, mMapItemY);
- if (item)
+ if (item != nullptr)
item->setComment(mDialog->getText());
- if (socialWindow)
+ if (socialWindow != nullptr)
socialWindow->updatePortalNames();
}
mDialog = nullptr;