Reverted wxString members to const wxChar * for struct BugsGridData
otherwise demo won't compile with BC5. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -188,7 +188,7 @@ GridFrame::GridFrame()
|
|||||||
logger->SetTimestamp( NULL );
|
logger->SetTimestamp( NULL );
|
||||||
|
|
||||||
// this will create a grid and, by default, an associated grid
|
// this will create a grid and, by default, an associated grid
|
||||||
// table for string gs_dataBugsGrid
|
// table for strings
|
||||||
grid->CreateGrid( 100, 100 );
|
grid->CreateGrid( 100, 100 );
|
||||||
|
|
||||||
grid->SetRowSize( 0, 60 );
|
grid->SetRowSize( 0, 60 );
|
||||||
@@ -756,10 +756,10 @@ static const wxChar* severities[] =
|
|||||||
static struct BugsGridData
|
static struct BugsGridData
|
||||||
{
|
{
|
||||||
int id;
|
int id;
|
||||||
wxString summary;
|
const wxChar *summary;
|
||||||
Severity severity;
|
Severity severity;
|
||||||
int prio;
|
int prio;
|
||||||
wxString platform;
|
const wxChar *platform;
|
||||||
bool opened;
|
bool opened;
|
||||||
} gs_dataBugsGrid [] =
|
} gs_dataBugsGrid [] =
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user