SVN commit 489819 by adridg: Using C99-style boolean operator keywords is a no-no for gcc 2.95 compatibility. CCMAIL: kde@freebsd.org M +1 -1 emoticonselector.cpp --- branches/KDE/3.5/kdenetwork/kopete/kopete/chatwindow/emoticonselector.cpp #489818:489819 @@ -47,7 +47,7 @@ // Some of the custom icons are rather large // so lets limit them to a maximum size for this display panel // - if (p.width() > 32 or p.height() > 32) + if (p.width() > 32 || p.height() > 32) p.resize(32, 32); setMinimumSize(p.size()); }