You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
536 B
14 lines
536 B
12 years ago
|
Index: src/kernel/qimage.h
|
||
|
===================================================================
|
||
|
--- src/kernel/qimage.h (revision 594273)
|
||
|
+++ src/kernel/qimage.h (working copy)
|
||
|
@@ -55,7 +55,7 @@ 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; }
|
||
|
};
|