diff options
author | George Hazan <ghazan@miranda.im> | 2020-02-17 18:00:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-02-17 18:00:54 +0300 |
commit | 73769ed8b0004dd35a33fdf75d3186f557cb60f3 (patch) | |
tree | 245743897e5d0301fcd4c2f0305c012d21efbdbb /protocols/JabberG/src/jabber_groupchat.cpp | |
parent | 554555b0d5de320c02a272caeccf8a419c1f62a8 (diff) |
code cleaning
Diffstat (limited to 'protocols/JabberG/src/jabber_groupchat.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_groupchat.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/JabberG/src/jabber_groupchat.cpp b/protocols/JabberG/src/jabber_groupchat.cpp index 2c194c073f..033d56213c 100644 --- a/protocols/JabberG/src/jabber_groupchat.cpp +++ b/protocols/JabberG/src/jabber_groupchat.cpp @@ -165,14 +165,14 @@ struct JabberGcRecentInfo }
private:
- BOOL null_strequals(const char *str1, const char *str2)
+ bool null_strequals(const char *str1, const char *str2)
{
- if (!str1 && !str2) return TRUE;
- if (!str1 && str2 && !*str2) return TRUE;
- if (!str2 && str1 && !*str1) return TRUE;
+ if (!str1 && !str2) return true;
+ if (!str1 && str2 && !*str2) return true;
+ if (!str2 && str1 && !*str1) return true;
- if (!str1 && str2) return FALSE;
- if (!str2 && str1) return FALSE;
+ if (!str1 && str2) return false;
+ if (!str2 && str1) return false;
return !mir_strcmp(str1, str2);
}
|