]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/grid/griddemo.cpp
Compile fix for --disable-ffile.
[wxWidgets.git] / samples / grid / griddemo.cpp
index 526cbce60f58ff596d62e0bc80b3a49ffb9404dd..fff0004fb0cbb94b4fc8142ff620caabf08f48d5 100644 (file)
@@ -969,7 +969,7 @@ void GridFrame::OnCellValueChanged( wxGridEvent& ev )
         col = ev.GetCol();
 
     wxLogMessage(_T("Value changed for cell at row %d, col %d: now \"%s\""),
-                 row, col, grid->GetCellValue(row, col));
+                 row, col, grid->GetCellValue(row, col).c_str());
 
     ev.Skip();
 }