Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/kvilib/core/KviPointerList.h
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ class KviPointerList
* \param bAutoDelete The state of autoDelete()
* \return KviPointerList<T>
*/
KviPointerList<T>(bool bAutoDelete = true)
KviPointerList(bool bAutoDelete = true)
{
m_bAutoDelete = bAutoDelete;
m_pHead = nullptr;
Expand All @@ -1264,7 +1264,7 @@ class KviPointerList
*
* If autoDelete() is set to true, all the items are deleted
*/
virtual ~KviPointerList<T>()
virtual ~KviPointerList()
{
clear();
};
Expand Down
2 changes: 1 addition & 1 deletion src/kvilib/irc/KviIrcMask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ bool KviIrcMask::hasMaskedIp() const
return ((pChar3 - pChar) > 4); // at the moment 4 should be enough : the largest top part is "name"
}

bool KviIrcMask::operator==(const KviIrcMask & user)
bool KviIrcMask::operator==(const KviIrcMask & user) const
{
if(KviQString::equalCI(m_szNick, user.m_szNick))
{
Expand Down
2 changes: 1 addition & 1 deletion src/kvilib/irc/KviIrcMask.h
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ class KVILIB_API KviIrcMask : public KviHeapObject
* \param user The username of the user
* \return bool
*/
bool operator==(const KviIrcMask & user);
bool operator==(const KviIrcMask & user) const;

private:
/**
Expand Down
Loading