Fix qimage header warnings

pull/2/head
Timothy Pearson 13 years ago
parent 8c6fc1f8e3
commit bb0845dd6d

@ -58,9 +58,9 @@ public:
QCString lang;
bool operator< (const QImageTextKeyLang& other) const
{ return key < other.key || key==other.key && lang < other.lang; }
{ return (key < other.key) || ((key==other.key) && (lang < other.lang)); }
bool operator== (const QImageTextKeyLang& other) const
{ return key==other.key && lang==other.lang; }
{ return (key==other.key) && (lang==other.lang); }
};
#endif //QT_NO_IMAGE_TEXT

Loading…
Cancel
Save