12 Jun
2006
12 Jun
'06
9:55 a.m.
I submitted a patch the other day for this, but somehow it made it back into the tree.
Selection.h has an over-specified method, which is ok in g++ 3.x, but breaks builds for 4.x. This really must not make it into any tarballs. Line 278:
/** * @return A vector containing the 2 (top-left and bottom-right) * corners of the selection bounding box. */ std::vectorNR::Point Selection::getBBoxPointsOuter() const;
Should be:
std::vectorNR::Point getBBoxPointsOuter() const;
bob