From: David Webster Date: Fri, 13 Jul 2001 17:42:16 +0000 (+0000) Subject: true vs TRUE again. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2e57a9efc538d71bda72c6c1b0acd6bd8ad2b771 true vs TRUE again. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11014 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/db.cpp b/src/common/db.cpp index f7227632ff..0b06c0497e 100644 --- a/src/common/db.cpp +++ b/src/common/db.cpp @@ -3022,7 +3022,7 @@ bool wxDb::Catalog(const wxChar *userID, const wxString &fileName) tblNameSave.Empty(); int cnt = 0; - while (true) + while (TRUE) { retcode = SQLFetch(hstmt); if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO) @@ -3722,7 +3722,7 @@ const wxChar WXDLLEXPORT *wxDbLogExtendedErrorMsg(const wxChar *userText, wxDb * msg.Append (wxT("\nODBC errors:\n")); msg += wxT("\n"); - + // Display errors for this connection int i; for (i = 0; i < DB_MAX_ERROR_HISTORY; i++)