From 984ef9dce7bcc69881176a89c5fe8a80511ea58c Mon Sep 17 00:00:00 2001 From: Michael Bedward Date: Mon, 28 Feb 2000 03:28:51 +0000 Subject: [PATCH] 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 --- samples/newgrid/griddemo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/newgrid/griddemo.cpp b/samples/newgrid/griddemo.cpp index 345f1ad8ec..739152eb63 100644 --- a/samples/newgrid/griddemo.cpp +++ b/samples/newgrid/griddemo.cpp @@ -188,7 +188,7 @@ GridFrame::GridFrame() logger->SetTimestamp( NULL ); // this will create a grid and, by default, an associated grid - // table for string gs_dataBugsGrid + // table for strings grid->CreateGrid( 100, 100 ); grid->SetRowSize( 0, 60 ); @@ -756,10 +756,10 @@ static const wxChar* severities[] = static struct BugsGridData { int id; - wxString summary; + const wxChar *summary; Severity severity; int prio; - wxString platform; + const wxChar *platform; bool opened; } gs_dataBugsGrid [] = { -- 2.45.2