[PATCH] msado15: Fix the name of the GetString() delimiter parameters.

Francois Gouget fgouget at free.fr
Tue Dec 10 02:24:13 CST 2019


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/msado15/recordset.c       | 6 +++---
 include/msado15_backcompat.idl | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/msado15/recordset.c b/dlls/msado15/recordset.c
index 52282c7e827..84adec406f4 100644
--- a/dlls/msado15/recordset.c
+++ b/dlls/msado15/recordset.c
@@ -526,11 +526,11 @@ static HRESULT WINAPI recordset_get_StayInSync( _Recordset *iface, VARIANT_BOOL
 }
 
 static HRESULT WINAPI recordset_GetString( _Recordset *iface, StringFormatEnum string_format, LONG num_rows,
-                                           BSTR column_delimeter, BSTR row_delimeter, BSTR null_expr,
+                                           BSTR column_delimiter, BSTR row_delimiter, BSTR null_expr,
                                            BSTR *ret_string )
 {
-    FIXME( "%p, %u, %d, %s, %s, %s, %p\n", iface, string_format, num_rows, debugstr_w(column_delimeter),
-           debugstr_w(row_delimeter), debugstr_w(null_expr), ret_string );
+    FIXME( "%p, %u, %d, %s, %s, %s, %p\n", iface, string_format, num_rows, debugstr_w(column_delimiter),
+           debugstr_w(row_delimiter), debugstr_w(null_expr), ret_string );
     return E_NOTIMPL;
 }
 
diff --git a/include/msado15_backcompat.idl b/include/msado15_backcompat.idl
index a1d5e28038b..e4a847ab859 100644
--- a/include/msado15_backcompat.idl
+++ b/include/msado15_backcompat.idl
@@ -1068,8 +1068,8 @@ interface Recordset20 : Recordset15
     HRESULT GetString(
         [in, defaultvalue(adClipString)] StringFormatEnum string_format,
         [in, defaultvalue(-1)] LONG num_rows,
-        [in, optional] BSTR column_delimeter,
-        [in, optional] BSTR row_delimeter,
+        [in, optional] BSTR column_delimiter,
+        [in, optional] BSTR row_delimiter,
         [in, optional] BSTR null_expr,
         [out, retval] BSTR *ret_string);
 
-- 
2.20.1




More information about the wine-devel mailing list