Commit 5da0c8b1 authored by Alex Villacís Lasso's avatar Alex Villacís Lasso Committed by Alexandre Julliard

ole32: Fix forgotten IPersistStorage vtable.

parent 1065d524
...@@ -1672,7 +1672,7 @@ static const IAdviseSinkVtbl DefaultHandler_IAdviseSink_VTable = ...@@ -1672,7 +1672,7 @@ static const IAdviseSinkVtbl DefaultHandler_IAdviseSink_VTable =
DefaultHandler_IAdviseSink_OnClose DefaultHandler_IAdviseSink_OnClose
}; };
static const IPersistStorageVtbl DefaultHander_IPersistStorage_VTable = static const IPersistStorageVtbl DefaultHandler_IPersistStorage_VTable =
{ {
DefaultHandler_IPersistStorage_QueryInterface, DefaultHandler_IPersistStorage_QueryInterface,
DefaultHandler_IPersistStorage_AddRef, DefaultHandler_IPersistStorage_AddRef,
...@@ -1709,6 +1709,7 @@ static DefaultHandler* DefaultHandler_Construct( ...@@ -1709,6 +1709,7 @@ static DefaultHandler* DefaultHandler_Construct(
This->lpvtblIDataObject = &DefaultHandler_IDataObject_VTable; This->lpvtblIDataObject = &DefaultHandler_IDataObject_VTable;
This->lpvtblIRunnableObject = &DefaultHandler_IRunnableObject_VTable; This->lpvtblIRunnableObject = &DefaultHandler_IRunnableObject_VTable;
This->lpvtblIAdviseSink = &DefaultHandler_IAdviseSink_VTable; This->lpvtblIAdviseSink = &DefaultHandler_IAdviseSink_VTable;
This->lpvtblIPersistStorage = &DefaultHandler_IPersistStorage_VTable;
/* /*
* Start with one reference count. The caller of this function * Start with one reference count. The caller of this function
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment