hi,

in last days git repository i found this in
Chart/WAxis.C - WAxis::computeRange(...) line 431

            if (findMaximum)
              maximum = std::max(v, maximum);
            if (findMaximum)
              minimum = std::min(v, minimum);

i think it should be

            if (findMaximum)
              maximum = std::max(v, maximum);
            if (findMinimum)
              minimum = std::min(v, minimum);

should i write a ticket for such things?

thanx,
johannes.

------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to