From: Vadim Zeitlin Date: Fri, 8 Mar 2002 16:33:54 +0000 (+0000) Subject: fixed typo (missing comma) in MIME test X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/df0dc216ad7c5ace4d80c9afc866f3c002b7b09d fixed typo (missing comma) in MIME test git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/console/console.cpp b/samples/console/console.cpp index b0062a69cc..0545e6bea6 100644 --- a/samples/console/console.cpp +++ b/samples/console/console.cpp @@ -1702,9 +1702,9 @@ static void TestMimeAssociate() _T("application/x-xyz"), _T("xyzview '%s'"), // open cmd _T(""), // print cmd - _T("XYZ File") // description - _T(".xyz"), // extensions - NULL // end of extensions + _T("XYZ File"), // description + _T(".xyz"), // extensions + NULL // end of extensions ); ftInfo.SetShortDesc(_T("XYZFile")); // used under Win32 only