X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0fbd8b9bbb249d338fc64182c309e0159b5ee14f..17beda75ef9780ebef5044e41889a9b598dcf186:/tests/interactive/output.cpp?ds=inline diff --git a/tests/interactive/output.cpp b/tests/interactive/output.cpp index ff462c2176..2722ca8952 100644 --- a/tests/interactive/output.cpp +++ b/tests/interactive/output.cpp @@ -90,7 +90,7 @@ CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( InteractiveOutputTestCase, "InteractiveOu // wxDllLoader // ---------------------------------------------------------------------------- -#if !defined(__WXMSW__) && !defined(__UNIX__) +#if !defined(__WINDOWS__) && !defined(__UNIX__) #undef TEST_DYNLIB #endif @@ -228,14 +228,10 @@ void InteractiveOutputTestCase::TestMimeAssociate() #ifdef TEST_MIME wxPuts(wxT("*** Testing creation of filetype association ***\n")); - wxFileTypeInfo ftInfo( - wxT("application/x-xyz"), - wxT("xyzview '%s'"), // open cmd - wxT(""), // print cmd - wxT("XYZ File"), // description - wxT(".xyz"), // extensions - wxNullPtr // end of extensions - ); + wxFileTypeInfo ftInfo("application/x-xyz"); + ftInfo.SetOpenCommand("xyzview '%s'"); + ftInfo.SetDescription("XYZ File"); + ftInfo.AddExtension(".xyz"); ftInfo.SetShortDesc(wxT("XYZFile")); // used under Win32 only wxFileType *ft = wxTheMimeTypesManager->Associate(ftInfo);