Fix qimage header warnings

pull/1/head
Timothy Pearson 13 years ago
parent 3ad1b623ac
commit 84d45ad00d

@ -58,9 +58,9 @@ public:
TQCString lang;
bool operator< (const TQImageTextKeyLang& 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 TQImageTextKeyLang& other) const
{ return key==other.key && lang==other.lang; }
{ return (key==other.key) && (lang==other.lang); }
};
#endif //QT_NO_IMAGE_TEXT

Loading…
Cancel
Save