From 76e86d5f86660a993e56401acee1c96d56641273 Mon Sep 17 00:00:00 2001 From: Richard Cohen Date: Mon, 21 Jul 2003 20:04:16 +0000 Subject: [PATCH] Revert bogus spelling "fix". --- documentation/ole.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/ole.sgml b/documentation/ole.sgml index 05b067dc1bc..f748dffc77c 100644 --- a/documentation/ole.sgml +++ b/documentation/ole.sgml @@ -240,7 +240,7 @@ struct IDirect3DVtbl { and initialize the lpVtbl field to point to this variable. - The IDirect3D_Xxx macros then just difference the lpVtbl + The IDirect3D_Xxx macros then just dereference the lpVtbl pointer and use the function pointer corresponding to the macro name. This emulates the behavior of a virtual table and should be just as fast. @@ -300,7 +300,7 @@ struct IDirect3DVtbl { Since IDirect3D does double duty, each ICOM_METHOD macro defines both a function pointer and a non-virtual inline - method which differences it and calls it. This way this + method which dereferences it and calls it. This way this method behaves just like a virtual method but does not create a true C++ virtual table which would break the structure layout. If you look at the implementation of these