Francois Gouget : d3d10core: Fix spelling of 'unknown'.

Alexandre Julliard julliard at winehq.org
Mon Nov 17 09:14:35 CST 2008


Module: wine
Branch: master
Commit: 13a279ef0a8fa3898e6407114784ff313f2b6557
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=13a279ef0a8fa3898e6407114784ff313f2b6557

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Nov 17 15:03:06 2008 +0100

d3d10core: Fix spelling of 'unknown'.

---

 dlls/d3d10core/d3d10core_main.c    |    2 +-
 dlls/d3d10core/d3d10core_private.h |    2 +-
 dlls/d3d10core/device.c            |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/d3d10core/d3d10core_main.c b/dlls/d3d10core/d3d10core_main.c
index 9190ca3..446096d 100644
--- a/dlls/d3d10core/d3d10core_main.c
+++ b/dlls/d3d10core/d3d10core_main.c
@@ -82,7 +82,7 @@ static HRESULT WINAPI layer_create(enum dxgi_device_layer_id id, void **layer_ba
     object = (struct d3d10_device *)*layer_base;
 
     object->vtbl = &d3d10_device_vtbl;
-    object->inner_unknown_vtbl = &d3d10_device_inner_unkown_vtbl;
+    object->inner_unknown_vtbl = &d3d10_device_inner_unknown_vtbl;
     object->refcount = 1;
 
     object->outer_unknown = device_object;
diff --git a/dlls/d3d10core/d3d10core_private.h b/dlls/d3d10core/d3d10core_private.h
index b33845c..16bb323 100644
--- a/dlls/d3d10core/d3d10core_private.h
+++ b/dlls/d3d10core/d3d10core_private.h
@@ -34,7 +34,7 @@ const char *debug_dxgi_format(DXGI_FORMAT format);
 
 /* IDirect3D10Device */
 extern const struct ID3D10DeviceVtbl d3d10_device_vtbl;
-extern const struct IUnknownVtbl d3d10_device_inner_unkown_vtbl;
+extern const struct IUnknownVtbl d3d10_device_inner_unknown_vtbl;
 struct d3d10_device
 {
     const struct ID3D10DeviceVtbl *vtbl;
diff --git a/dlls/d3d10core/device.c b/dlls/d3d10core/device.c
index ab92c47..567c93a 100644
--- a/dlls/d3d10core/device.c
+++ b/dlls/d3d10core/device.c
@@ -876,7 +876,7 @@ const struct ID3D10DeviceVtbl d3d10_device_vtbl =
     d3d10_device_GetTextFilterSize,
 };
 
-const struct IUnknownVtbl d3d10_device_inner_unkown_vtbl =
+const struct IUnknownVtbl d3d10_device_inner_unknown_vtbl =
 {
     /* IUnknown methods */
     d3d10_device_inner_QueryInterface,




More information about the wine-cvs mailing list