]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlhelp_io.cpp
Added more docs for the new events, derived from wxNotifyEvents.
[wxWidgets.git] / src / html / htmlhelp_io.cpp
index b4d82e7ec91704e5c272188d153e987d18e26364..001f085a397e155827be136818f354f17046945c 100644 (file)
@@ -129,7 +129,7 @@ void wxHtmlHelpController::LoadMSProject(HtmlBookRecord *book, wxFileSystem& fsy
 
     f = fsys.OpenFile(contentsfile);
     if (f) {
-        sz = f -> GetStream() -> StreamSize();
+        sz = f -> GetStream() -> GetSize();
         buf = (char*) malloc(sz+1);
         buf[sz] = 0;
         f -> GetStream() -> Read(buf, sz);
@@ -142,7 +142,7 @@ void wxHtmlHelpController::LoadMSProject(HtmlBookRecord *book, wxFileSystem& fsy
 
     f = fsys.OpenFile(indexfile);
     if (f) {
-        sz = f -> GetStream() -> StreamSize();
+        sz = f -> GetStream() -> GetSize();
         buf = (char*) malloc(sz+1);
         buf[sz] = 0;
         f -> GetStream() -> Read(buf, sz);