Commit 17236668 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: Rename StorageImpl_SetElementTimes to StorageBaseImpl_SetElementTimes.

parent fd2f35a8
......@@ -2105,7 +2105,7 @@ static HRESULT removeFromTree(
/******************************************************************************
* SetElementTimes (IStorage)
*/
static HRESULT WINAPI StorageImpl_SetElementTimes(
static HRESULT WINAPI StorageBaseImpl_SetElementTimes(
IStorage* iface,
const OLECHAR *pwcsName,/* [string][in] */
const FILETIME *pctime, /* [in] */
......@@ -2148,7 +2148,7 @@ static const IStorageVtbl Storage32Impl_Vtbl =
StorageBaseImpl_EnumElements,
StorageBaseImpl_DestroyElement,
StorageBaseImpl_RenameElement,
StorageImpl_SetElementTimes,
StorageBaseImpl_SetElementTimes,
StorageBaseImpl_SetClass,
StorageImpl_SetStateBits,
StorageImpl_Stat
......@@ -3956,7 +3956,7 @@ static const IStorageVtbl Storage32InternalImpl_Vtbl =
StorageBaseImpl_EnumElements,
StorageBaseImpl_DestroyElement,
StorageBaseImpl_RenameElement,
StorageImpl_SetElementTimes,
StorageBaseImpl_SetElementTimes,
StorageBaseImpl_SetClass,
StorageImpl_SetStateBits,
StorageBaseImpl_Stat
......
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