From 297872379960d4e997e58e6063c9f1fd60765981 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 10 Oct 2004 10:10:27 +0000 Subject: [PATCH] Removed types that don't exist in iodbc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/db/dbtest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/db/dbtest.cpp b/samples/db/dbtest.cpp index 053dab084b..5494cfd83d 100644 --- a/samples/db/dbtest.cpp +++ b/samples/db/dbtest.cpp @@ -1817,9 +1817,9 @@ bool CeditorDlg::GetData() if (!invalid) { - wxGetApp().Contact->JoinDate.month = (SQLUSMALLINT)mm; - wxGetApp().Contact->JoinDate.day = (SQLUSMALLINT)dd; - wxGetApp().Contact->JoinDate.year = (SQLSMALLINT)yyyy; + wxGetApp().Contact->JoinDate.month = (unsigned short) mm; + wxGetApp().Contact->JoinDate.day = (unsigned short) dd; + wxGetApp().Contact->JoinDate.year = (short) yyyy; } else { -- 2.45.2