diff options
-rw-r--r-- | src/channel.cpp | 5 | ||||
-rw-r--r-- | src/gui/widgets/channeltab.cpp | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/src/channel.cpp b/src/channel.cpp index fcc8c6f8..38329e0c 100644 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -35,8 +35,5 @@ Channel::Channel(short id, Channel::~Channel() { - if (mTab) - { - delete mTab; - } + delete mTab; } diff --git a/src/gui/widgets/channeltab.cpp b/src/gui/widgets/channeltab.cpp index aac1cdb6..48056f52 100644 --- a/src/gui/widgets/channeltab.cpp +++ b/src/gui/widgets/channeltab.cpp @@ -37,8 +37,8 @@ ChannelTab::ChannelTab(Channel *channel) : ChannelTab::~ChannelTab() { - // Clear tab so the channel won't try to (if the ChatWindow is cleared - // before the channels are, we'll run into issues without this) + // Clear tab so the channel won't try to delete it again (otherwise we'd + // run into issues if the ChatWindow is deleted before the channels are) mChannel->setTab(0); } |