Hey Johannes, 2010/1/28 Johannes Kepler <[email protected]>: > 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?
You can report bugs whichever way you find most convenient. As long as you do! I'll fix this right away. It's a pitty that maximum and minimum are visually so much alike ! Make me think of an emacs minor mode which colors each identifier based on a hash of it, would that not be useful? Regards, koen ------------------------------------------------------------------------------ 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
