Warning fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-03-01 16:53:22 +00:00
parent b0f3dd44e4
commit 21fe01e299
3 changed files with 15 additions and 14 deletions

View File

@@ -1028,9 +1028,9 @@ void MyApp::DoVariantDemo(wxCommandEvent& WXUNUSED(event) )
wxUnusedVar(l);
wxUnusedVar(v);
wxStringList stringList;
stringList.Add(_T("one")); stringList.Add(_T("two")); stringList.Add(_T("three"));
var1 = stringList;
wxArrayString stringArray;
stringArray.Add(_T("one")); stringArray.Add(_T("two")); stringArray.Add(_T("three"));
var1 = stringArray;
textCtrl << _T("var1 = ") << var1.MakeString() << _T("\n");
var1.ClearList();