Fixes for Bug #592758

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-08-08 19:11:07 +00:00
parent efe12e9542
commit 6b2cf8c9e1
4 changed files with 8 additions and 8 deletions

View File

@@ -1565,12 +1565,12 @@ void* wxStyledTextCtrl::CreateDocument() {
// Extend life of document.
void wxStyledTextCtrl::AddRefDocument(void* docPointer) {
SendMsg(2376, (long)docPointer);
SendMsg(2376, 0, (long)docPointer);
}
// Release a reference to the document, deleting document if it fades to black.
void wxStyledTextCtrl::ReleaseDocument(void* docPointer) {
SendMsg(2377, (long)docPointer);
SendMsg(2377, 0, (long)docPointer);
}
// Get which document modification events are sent to the container.