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