From: Roger B. <ro...@ro...> - 2004-04-20 04:43:26
|
Steven Palm wrote: > So, in his case it seemed as though changing to use tuples did not > break 2.4... Did you try this in the instances you were looking at? Only a short piece of code uses space in sizers. The other areas I was looking at all involved drawing in DC's. The 2.4 methods are like this: DC.DrawBitmap(bmp, x, y) In 2.5, you have to do one of the following: DC.DrawBitmap(bmp, (x,y) ) or DC.DrawBitmapXY(bmp, x, y) So there is no way to have the same line of code work with both, which means versioned if statements all over the place. > that *required* 2.5 is on a back back burner now, so I could care less > when we move. ;-) I would like to move for things like selectable HTML, toolbar icon now available for GTK, CHM help on all platforms, zillions of bug fixes, and because Robin has hidden the 2.4 releases. Roger |