// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "typetest.h"
-#endif
-
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
char std_buf[200];
std_file_input >> std_buf;
- str.FromAscii(std_buf);
+ str = wxString::FromAscii(std_buf);
tmp.Printf( _T("String: %s\n"), str.c_str() );
textCtrl.WriteText( tmp );
textCtrl << _T("\nTest wchar_t to char (Unicode to ANSI/Multibyte) converions:");
wxString str;
- str = _T("Robert Rรถbling\n");
+ str = _T("Robert R\366bling\n");
printf( "\n\nConversion with wxConvLocal:\n" );
wxConvCurrent = &wxConvLocal;
wxFileType::MessageParameters params(filename, type);
filetype->GetOpenCommand(&open, params);
- textCtrl << _T("MIME information about extension '") << ext << _T("'\n")
+ textCtrl << _T("MIME information about extension '") << ext << _T('\n')
<< _T("\tMIME type: ") << ( !type ? wxT("unknown")
- : type.c_str() ) << '\n'
+ : type.c_str() ) << _T('\n')
<< _T("\tDescription: ") << ( !desc ? wxEmptyString : desc.c_str() )
- << '\n'
+ << _T('\n')
<< _T("\tCommand to open: ") << ( !open ? wxT("no") : open.c_str() )
- << '\n';
+ << _T('\n');
delete filetype;
}
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();