diff options
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/avatarlistbox.cpp | 2 | ||||
-rw-r--r-- | src/gui/widgets/browserbox.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/widgets/avatarlistbox.cpp b/src/gui/widgets/avatarlistbox.cpp index f2907aaf3..372218fe6 100644 --- a/src/gui/widgets/avatarlistbox.cpp +++ b/src/gui/widgets/avatarlistbox.cpp @@ -399,7 +399,7 @@ void AvatarListBox::mousePressed(gcn::MouseEvent &event) { const WhisperTab *const tab = chatWindow->addWhisperTab( model->getAvatarAt(selected)->getName(), true); - if (chatWindow && tab) + if (tab) chatWindow->saveState(); } } diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h index 0b8c99c8a..045e0d5d5 100644 --- a/src/gui/widgets/browserbox.h +++ b/src/gui/widgets/browserbox.h @@ -48,8 +48,8 @@ struct BROWSER_LINK final class LinePart final { public: - LinePart(const int x, const int y, const gcn::Color color, - const gcn::Color color2, const std::string &text, + LinePart(const int x, const int y, const gcn::Color &color, + const gcn::Color &color2, const std::string &text, const bool bold) : mX(x), mY(y), @@ -62,8 +62,8 @@ class LinePart final { } - LinePart(const int x, const int y, const gcn::Color color, - const gcn::Color color2, Image *const image) : + LinePart(const int x, const int y, const gcn::Color &color, + const gcn::Color &color2, Image *const image) : mX(x), mY(y), mColor(color), |