From 1e5fa538b7095ab94110808c585cb55b5b1ec23f Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Fri, 30 Nov 2012 09:52:09 +0100 Subject: rename View functions to Query The implementation-side "view" concept is different from the API side. Rename the API to make it more consistent. --- libmsi/alter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libmsi/alter.c') diff --git a/libmsi/alter.c b/libmsi/alter.c index b96dc61..3d5b632 100644 --- a/libmsi/alter.c +++ b/libmsi/alter.c @@ -91,11 +91,11 @@ static bool check_column_exists(LibmsiDatabase *db, const WCHAR *table, const WC if (r != ERROR_SUCCESS) return false; - r = MSI_ViewExecute(view, NULL); + r = MSI_QueryExecute(view, NULL); if (r != ERROR_SUCCESS) goto done; - r = MSI_ViewFetch(view, &rec); + r = MSI_QueryFetch(view, &rec); if (r == ERROR_SUCCESS) msiobj_release(&rec->hdr); -- cgit