Francois Gouget : msado15: Fix the name of the GetString() delimiter parameters.

Alexandre Julliard julliard at winehq.org
Tue Dec 10 15:58:49 CST 2019


Module: wine
Branch: master
Commit: 4d5e1f07ef145872d406231c2e83a39405c6dc89
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=4d5e1f07ef145872d406231c2e83a39405c6dc89

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Dec 10 09:24:13 2019 +0100

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

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 52282c7e82..84adec406f 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 a1d5e28038..e4a847ab85 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);
 




More information about the wine-cvs mailing list