wxMimeTypeManager::EnumAll() seems to work, couple of minor corrections to the MIME code

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4858 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-12-07 15:18:22 +00:00
parent 7799a2d76f
commit 54acce9084
2 changed files with 39 additions and 20 deletions

View File

@@ -82,7 +82,8 @@ static void TestMimeEnum()
extsAll += exts[e];
}
printf("\t%s: %s (%s)\n", mimetypes[n], desc, extsAll);
printf("\t%s: %s (%s)\n",
mimetypes[n].c_str(), desc.c_str(), extsAll.c_str());
}
}