]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/activex/wxie/IEHtmlWin.cpp
fixed paste error
[wxWidgets.git] / wxPython / contrib / activex / wxie / IEHtmlWin.cpp
index cab5efcdd7c0371fd7a07a226360137b1060e8ab..955be061005376eb918839600e81974546e14674 100644 (file)
@@ -77,7 +77,7 @@ HRESULT STDMETHODCALLTYPE IStreamAdaptorBase::Read(void __RPC_FAR *pv, ULONG cb,
 {
     if (prepend.size() > 0)
     {
-        int n = min(prepend.size(), cb);
+        int n = wxMin(prepend.size(), cb);
         prepend.copy((char *) pv, n);
         prepend = prepend.substr(n);
         if (pcbRead)
@@ -328,7 +328,7 @@ bool wxIEHtmlWin::GoHome()
 {
     try
     {
-        CallMethod("GoHome");
+        CallMethod(_T("GoHome"));
         return true;
     }
     catch(exception&)