From fd0f00b0c92ce429d3ee271413f5cca00cbb12f3 Mon Sep 17 00:00:00 2001 From: Jacek Kubica Date: Sun, 4 Jul 2010 21:51:32 +0000 Subject: [PATCH] 2010-07-04 21:25 UTC+0200 Jacek Kubica (kubica@wssk.wroc.pl) * examples/httpsrv/modules/tableservletdb.prg ! Fixed: mismatch errpr in two methods declaration --- harbour/ChangeLog | 4 ++++ harbour/examples/httpsrv/modules/tableservletdb.prg | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 664bebaf12..e9efd33c45 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-04 21:25 UTC+0200 Jacek Kubica (kubica@wssk.wroc.pl) + * examples/httpsrv/modules/tableservletdb.prg + ! Fixed: mismatch error in two methods declaration + 2010-07-04 12:49 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbqt/hbqt_hbqplaintextedit.cpp ! Fixed: one more glitch in selected text background color diff --git a/harbour/examples/httpsrv/modules/tableservletdb.prg b/harbour/examples/httpsrv/modules/tableservletdb.prg index 70300b63bf..4cb5ec065b 100644 --- a/harbour/examples/httpsrv/modules/tableservletdb.prg +++ b/harbour/examples/httpsrv/modules/tableservletdb.prg @@ -146,8 +146,8 @@ CLASS TableManager METHOD Close() INLINE IIF( ::lOpened, ( table->( dbCloseArea() ), ::lOpened := FALSE ), ) METHOD Read() METHOD getLastRec() INLINE table->( LastRec() ) - METHOD getXmlData() - METHOD getXmlCount() + METHOD getXmlData( page ) + METHOD getXmlCount( ncount ) METHOD xmlEncode( input ) ENDCLASS