From: George Tasker Date: Sun, 7 Nov 1999 15:06:13 +0000 (+0000) Subject: Cleaned up a compile warning on the MAX_PATH definition. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d433a26fd45d185185f43b65f5c57f86fce93a43 Cleaned up a compile warning on the MAX_PATH definition. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4420 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/db/dbtest.h b/samples/db/dbtest.h index a1e2e5ec39..4d1f745844 100644 --- a/samples/db/dbtest.h +++ b/samples/db/dbtest.h @@ -25,8 +25,9 @@ enum DialogModes {mView,mCreate,mEdit,mSearch}; #define ABOUT_DEMO 300 // this seems to be missing, Robert Roebling (?) +#ifndef MAX_PATH #define MAX_PATH 200 - +#endif // Name of the table to be created/opened const char CONTACT_TABLE_NAME[] = "contacts";