By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 637
Collapse All | Expand All

(-)src/kernel/qimage.h (-1 / +1 lines)
Lines 55-61 public: Link Here
55
    QCString lang;
55
    QCString lang;
56
56
57
    bool operator< (const QImageTextKeyLang& other) const
57
    bool operator< (const QImageTextKeyLang& other) const
58
	{ return key < other.key || key==other.key && lang < other.lang; }
58
	{ return key < other.key || (key==other.key && lang < other.lang); }
59
    bool operator== (const QImageTextKeyLang& other) const
59
    bool operator== (const QImageTextKeyLang& other) const
60
	{ return key==other.key && lang==other.lang; }
60
	{ return key==other.key && lang==other.lang; }
61
};
61
};

Return to bug 637