wxGrid::SetCellValue parameters changed?? Topic is solved

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
maxbld
Earned some good credits
Earned some good credits
Posts: 113
Joined: Wed Jan 30, 2013 10:49 pm

wxGrid::SetCellValue parameters changed??

Post by maxbld »

Hi all,

Can you please confirm that void SetCellValue( const wxString& s, int row, int col ); got changed to void SetCellValue( int row, int col, const wxString& s ); somewhere in between wxWidgets-3.0.2 and wxWidgets-3.1.0??

That is *SO* annoying!

Thanks, BR,
Max.
User avatar
doublemax
Moderator
Moderator
Posts: 19114
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: wxGrid::SetCellValue parameters changed??

Post by doublemax »

Yes. The old version is available if you build wxWidgets with WXWIN_COMPATIBILITY_2_8 = 1
(Which a quick look into the header file would have revealed. That's what i did.)
Use the source, Luke!
Post Reply