gui/channellist.cpp: bug fix, default copy constructor is danger, if class have pointers

This commit is contained in:
[CST] Focus
2014-11-26 10:45:29 +03:00
parent e964a13763
commit 36b14e31ef
3 changed files with 3 additions and 5 deletions

View File

@@ -119,7 +119,6 @@ CChannelList::CChannelList(const char * const pName, bool phistoryMode, bool _vl
CChannelList::~CChannelList()
{
chanlist->clear();
if(dline){
delete dline;
dline = NULL;

View File

@@ -236,6 +236,7 @@ public:
SORT_MAX
};
unsigned Size() { return (*chanlist).size(); }
ZapitChannelList &getChannels() { return channels; };
};
#endif