By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 437
Collapse All | Expand All

(-)file_not_specified_in_diff (-1 / +2 lines)
Line  Link Here
0
-- hk_classes-0.8.3/hk_classes/hk_actionquery.cpp      2006-04-13 20:02:01.000000000 +0200
0
++ hk_classes-0.8.3.new/hk_classes/hk_actionquery.cpp  2008-04-22 13:38:01.000000000 +0200
Lines 12-17 Link Here
12
#include "hk_actionquery.h"
12
#include "hk_actionquery.h"
13
#include "hk_database.h"
13
#include "hk_database.h"
14
#include <string.h>
14
#include <time.h>
15
#include <time.h>
15
class hk_actionqueryprivate
16
class hk_actionqueryprivate
(-)hk_classes-0.8.3/hk_classes/hk_button.cpp (-1 / +1 lines)
Lines 17-23 Link Here
17
#include "hk_actionquery.h"
17
#include "hk_actionquery.h"
18
#include "hk_interpreter.h"
18
#include "hk_interpreter.h"
19
19
#include <string.h>
20
class hk_buttonprivate
20
class hk_buttonprivate
21
{
21
{
(-)hk_classes-0.8.3/hk_classes/hk_column.cpp (+1 lines)
Lines 14-19 Link Here
14
#include "hk_dsdatavisible.h"
14
#include "hk_dsdatavisible.h"
15
#include "hk_datetime.h"
15
#include "hk_datetime.h"
16
#include <stdio.h>
16
#include <stdio.h>
17
#include <string.h>
17
hk_column::hk_column(hk_datasource* ds, const hk_string& lTRUE,const hk_string& lFALSE)
18
hk_column::hk_column(hk_datasource* ds, const hk_string& lTRUE,const hk_string& lFALSE)
18
{
19
{
(-)hk_classes-0.8.3/hk_classes/hk_datasource.cpp (-1 / +1 lines)
Lines 21-27 Link Here
21
#include <list>
21
#include <list>
22
#include <stdlib.h>
22
#include <stdlib.h>
23
#include <time.h>
23
#include <time.h>
24
24
#include <string.h>
25
 voidfunction* hk_datasource::p_enablefunction=NULL;
25
 voidfunction* hk_datasource::p_enablefunction=NULL;
26
 long hk_datasource::p_enablefunctioncounter=0;
26
 long hk_datasource::p_enablefunctioncounter=0;
(-)hk_classes-0.8.3/hk_classes/hk_dsimage.cpp (+1 lines)
Lines 12-17 Link Here
12
#include "hk_form.h"
12
#include "hk_form.h"
13
#include "hk_url.h"
13
#include "hk_url.h"
14
#include <string.h>
14
hk_dsimage::imagetypelisttype  hk_dsimage::p_imagetypefunctions;
15
hk_dsimage::imagetypelisttype  hk_dsimage::p_imagetypefunctions;
(-)hk_classes-0.8.3/hk_classes/hk_reportsection.cpp (+2 lines)
Lines 19-24 Link Here
19
#include "hk_column.h"
19
#include "hk_column.h"
20
#include "hk_datasource.h"
20
#include "hk_datasource.h"
21
#include <string.h>
22
21
const  double teiler=10000.0;
23
const  double teiler=10000.0;
22
//********************************************
24
//********************************************
(-)hk_classes-0.8.3/hk_classes/hk_storagedatasource.cpp (+2 lines)
Lines 10-15 Link Here
10
// ****************************************************************************
10
// ****************************************************************************
11
#include "hk_storagedatasource.h"
11
#include "hk_storagedatasource.h"
12
#include <string.h>
13
12
hk_storagedatasource::hk_storagedatasource(hk_database* d,hk_presentation* p):hk_datasource(d,p)
14
hk_storagedatasource::hk_storagedatasource(hk_database* d,hk_presentation* p):hk_datasource(d,p)
13
{
15
{
14
#ifdef HK_DEBUG
16
#ifdef HK_DEBUG
(-)hk_classes-0.8.3/hk_mysqlclasses/hk_mysqlcolumn.cpp (+2 lines)
Lines 18-23 Link Here
18
#include <mysql.h>
18
#include <mysql.h>
19
#include <errmsg.h>
19
#include <errmsg.h>
20
#include <string.h>
21
20
hk_mysqlcolumn::hk_mysqlcolumn(hk_mysqldatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
22
hk_mysqlcolumn::hk_mysqlcolumn(hk_mysqldatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
21
:hk_storagecolumn(ds,tTRUE,tFALSE)
23
:hk_storagecolumn(ds,tTRUE,tFALSE)
22
{
24
{
(-)hk_classes-0.8.3/hk_mysqlclasses/hk_mysqldatasource.cpp (+1 lines)
Lines 15-20 Link Here
15
#include "hk_mysqlactionquery.h"
15
#include "hk_mysqlactionquery.h"
16
#include <exception>
16
#include <exception>
17
#include <new>
17
#include <new>
18
#include <string.h>
18
hk_mysqldatasource::hk_mysqldatasource(hk_mysqldatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
19
hk_mysqldatasource::hk_mysqldatasource(hk_mysqldatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
19
{
20
{
(-)hk_classes-0.8.3/hk_mysqlclasses/hk_mysqltable.cpp (+3 lines)
Lines 12-17 Link Here
12
#include "hk_mysqltable.h"
12
#include "hk_mysqltable.h"
13
#include "hk_mysqldatabase.h"
13
#include "hk_mysqldatabase.h"
14
#include "hk_actionquery.h"
14
#include "hk_actionquery.h"
15
16
#include <string.h>
17
15
hk_mysqltable::hk_mysqltable(hk_mysqldatabase* db,hk_presentation* p):hk_mysqldatasource(db,p)
18
hk_mysqltable::hk_mysqltable(hk_mysqldatabase* db,hk_presentation* p):hk_mysqldatasource(db,p)
16
{
19
{
(-)hk_classes-0.8.3/hk_odbcclasses/hk_odbccolumn.cpp (+2 lines)
Lines 18-23 Link Here
18
#include <sql.h>
18
#include <sql.h>
19
//#include <errmsg.h>
19
//#include <errmsg.h>
20
#include <string.h>
21
20
hk_odbccolumn::hk_odbccolumn(hk_odbcdatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
22
hk_odbccolumn::hk_odbccolumn(hk_odbcdatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
21
:hk_storagecolumn(ds,tTRUE,tFALSE)
23
:hk_storagecolumn(ds,tTRUE,tFALSE)
22
{
24
{
(-)hk_classes-0.8.3/hk_odbcclasses/hk_odbcdatasource.cpp (+2 lines)
Lines 18-23 Link Here
18
#include <exception>
18
#include <exception>
19
#include <new>
19
#include <new>
20
#include <string.h>
21
20
hk_odbcdatasource::hk_odbcdatasource(hk_odbcdatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
22
hk_odbcdatasource::hk_odbcdatasource(hk_odbcdatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
21
{
23
{
22
#ifdef HK_DEBUG
24
#ifdef HK_DEBUG
(-)hk_classes-0.8.3/hk_odbcclasses/hk_odbctable.cpp (+2 lines)
Lines 16-21 Link Here
16
#include <sqltypes.h>
16
#include <sqltypes.h>
17
#include <sqlext.h>
17
#include <sqlext.h>
18
#include <string.h>
19
18
hk_odbctable::hk_odbctable(hk_odbcdatabase* db,hk_presentation* p):hk_odbcdatasource(db,p)
20
hk_odbctable::hk_odbctable(hk_odbcdatabase* db,hk_presentation* p):hk_odbcdatasource(db,p)
19
{
21
{
(-)hk_classes-0.8.3/hk_postgresclasses/hk_postgresqlcolumn.cpp (+3 lines)
Lines 12-17 Link Here
12
#include "hk_postgresqlcolumn.h"
12
#include "hk_postgresqlcolumn.h"
13
#include "hk_postgresqldatasource.h"
13
#include "hk_postgresqldatasource.h"
14
#include "hk_postgresqldatabase.h"
14
#include "hk_postgresqldatabase.h"
15
16
#include <string.h>
17
15
hk_postgresqlcolumn::hk_postgresqlcolumn(hk_postgresqldatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
18
hk_postgresqlcolumn::hk_postgresqlcolumn(hk_postgresqldatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
16
:hk_storagecolumn(ds,tTRUE,tFALSE)
19
:hk_storagecolumn(ds,tTRUE,tFALSE)
17
{
20
{
(-)hk_classes-0.8.3/hk_postgresclasses/hk_postgresqldatasource.cpp (+2 lines)
Lines 17-22 Link Here
17
#include <exception>
17
#include <exception>
18
#include <new>
18
#include <new>
19
#include <string.h>
20
19
hk_postgresqldatasource::hk_postgresqldatasource(hk_postgresqldatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
21
hk_postgresqldatasource::hk_postgresqldatasource(hk_postgresqldatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
20
{
22
{
21
#ifdef HK_DEBUG
23
#ifdef HK_DEBUG
(-)hk_classes-0.8.3/hk_sqlite3classes/hk_sqlite3column.cpp (+2 lines)
Lines 18-23 Link Here
18
#include <sqlite3.h>
18
#include <sqlite3.h>
19
#include <string.h>
20
19
hk_sqlite3column::hk_sqlite3column(hk_sqlite3datasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
21
hk_sqlite3column::hk_sqlite3column(hk_sqlite3datasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
20
:hk_storagecolumn(ds,tTRUE,tFALSE)
22
:hk_storagecolumn(ds,tTRUE,tFALSE)
21
{
23
{
(-)hk_classes-0.8.3/hk_sqlite3classes/hk_sqlite3datasource.cpp (+2 lines)
Lines 17-22 Link Here
17
#include <exception>
17
#include <exception>
18
#include <new>
18
#include <new>
19
#include <string.h>
20
19
hk_sqlite3datasource::hk_sqlite3datasource(hk_sqlite3database* d,hk_presentation* p):hk_storagedatasource(d,p)
21
hk_sqlite3datasource::hk_sqlite3datasource(hk_sqlite3database* d,hk_presentation* p):hk_storagedatasource(d,p)
20
{
22
{
21
#ifdef HK_DEBUG
23
#ifdef HK_DEBUG
(-)hk_classes-0.8.3/hk_sqliteclasses/hk_sqlitecolumn.cpp (+2 lines)
Lines 18-23 Link Here
18
#include <sqlite.h>
18
#include <sqlite.h>
19
#include <string.h>
20
19
hk_sqlitecolumn::hk_sqlitecolumn(hk_sqlitedatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
21
hk_sqlitecolumn::hk_sqlitecolumn(hk_sqlitedatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
20
:hk_storagecolumn(ds,tTRUE,tFALSE)
22
:hk_storagecolumn(ds,tTRUE,tFALSE)
21
{
23
{
(-)hk_classes-0.8.3/hk_sqliteclasses/hk_sqlitedatasource.cpp (+2 lines)
Lines 17-22 Link Here
17
#include <exception>
17
#include <exception>
18
#include <new>
18
#include <new>
19
#include <string.h>
20
19
hk_sqlitedatasource::hk_sqlitedatasource(hk_sqlitedatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
21
hk_sqlitedatasource::hk_sqlitedatasource(hk_sqlitedatabase* d,hk_presentation* p):hk_storagedatasource(d,p)
20
{
22
{
21
#ifdef HK_DEBUG
23
#ifdef HK_DEBUG
(-)hk_classes-0.8.3/hk_dbaseclasses/xbase/xblock.cpp~ (-2 / +2 lines)
Lines 48-54 Link Here
48
48
49
49
50
#include "xbase64.h"
50
#include "xbase64.h"
51
51
#include <cerrno>
52
#ifdef HAVE_IO_H     // windows locking
52
#ifdef HAVE_IO_H     // windows locking
53
#include <io.h>
53
#include <io.h>
54
#endif
54
#endif
Lines 124-130 Link Here
124
  return 0;
124
  return 0;
125
}
125
}
126
126
127
#elif HAVE_FCNTL_H
127
#else
128
128
129
xbShort xbLock::LockFile( int fn, xbShort LockType, xbOffT lockLen )
129
xbShort xbLock::LockFile( int fn, xbShort LockType, xbOffT lockLen )
130
{
130
{
(-)hk_classes-0.8.3/hk_paradoxclasses/hk_paradoxcolumn.cpp~ (-1 / +1 lines)
Lines 10-16 Link Here
10
// ****************************************************************************
10
// ****************************************************************************
11
#include "hk_paradoxcolumn.h"
11
#include "hk_paradoxcolumn.h"
12
#include "hk_paradoxdatasource.h"
12
#include "hk_paradoxdatasource.h"
13
13
#include <cstring>
14
14
15
hk_paradoxcolumn::hk_paradoxcolumn(hk_paradoxdatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
15
hk_paradoxcolumn::hk_paradoxcolumn(hk_paradoxdatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
16
:hk_storagecolumn(ds,tTRUE,tFALSE)
16
:hk_storagecolumn(ds,tTRUE,tFALSE)
(-)hk_classes-0.8.3/hk_paradoxclasses/hk_paradoxtable.cpp~ (+1 lines)
Lines 16-21 Link Here
16
#include "hk_paradoxconnection.h"
16
#include "hk_paradoxconnection.h"
17
#include "hk_paradoxdatabase.h"
17
#include "hk_paradoxdatabase.h"
18
#include "hk_url.h"
18
#include "hk_url.h"
19
#include <cstring>
19
//#include <pxversion.h>
20
//#include <pxversion.h>
20
21
21
hk_paradoxtable::hk_paradoxtable(hk_paradoxdatabase* db,hk_presentation* p):hk_paradoxdatasource(db,p)
22
hk_paradoxtable::hk_paradoxtable(hk_paradoxdatabase* db,hk_presentation* p):hk_paradoxdatasource(db,p)
(-)hk_classes-0.8.3/hk_firebirdclasses/hk_firebirdcolumn.cpp~ (-1 / +1 lines)
Lines 10-16 Link Here
10
// ****************************************************************************
10
// ****************************************************************************
11
#include "hk_firebirdcolumn.h"
11
#include "hk_firebirdcolumn.h"
12
#include "hk_firebirddatasource.h"
12
#include "hk_firebirddatasource.h"
13
13
#include <cstring>
14
14
15
hk_firebirdcolumn::hk_firebirdcolumn(hk_firebirddatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
15
hk_firebirdcolumn::hk_firebirdcolumn(hk_firebirddatasource* ds, const hk_string& tTRUE,const hk_string& tFALSE)
16
:hk_storagecolumn(ds,tTRUE,tFALSE)
16
:hk_storagecolumn(ds,tTRUE,tFALSE)
(-)hk_classes-0.8.3/hk_firebirdclasses/hk_firebirdconnection.cpp~ (+1 lines)
Lines 14-19 Link Here
14
#include <dirent.h>
14
#include <dirent.h>
15
#include <unistd.h>
15
#include <unistd.h>
16
#include <sys/stat.h>
16
#include <sys/stat.h>
17
#include <cstring>
17
#ifdef HAVE_SSTREAM
18
#ifdef HAVE_SSTREAM
18
#include <sstream>
19
#include <sstream>
19
#else
20
#else
(-)hk_classes-0.8.3/hk_firebirdclasses/hk_firebirddatasource.cpp~ (+1 lines)
Lines 15-20 Link Here
15
#include "hk_firebirdactionquery.h"
15
#include "hk_firebirdactionquery.h"
16
#include <hk_datetime.h>
16
#include <hk_datetime.h>
17
#include <time.h>
17
#include <time.h>
18
#include <cstring>
18
#include <exception>
19
#include <exception>
19
#include <new>
20
#include <new>
20
21
(-)hk_classes-0.8.3/hk_xbaseclasses/Makefile.in~ (-1 / +1 lines)
Lines 233-239 Link Here
233
AM_CPPFLAGS = 
233
AM_CPPFLAGS = 
234
AM_CXXFLAGS = -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings -I@XMLINCLUDE@ @BITARCHITECTURE@
234
AM_CXXFLAGS = -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings -I@XMLINCLUDE@ @BITARCHITECTURE@
235
libhk_xbasedriver_la_LDFLAGS = -version-info 0:0:0 -L@XBASELIBDIR@
235
libhk_xbasedriver_la_LDFLAGS = -version-info 0:0:0 -L@XBASELIBDIR@
236
libhk_xbasedriver_la_LIBADD = -lxbsql ../hk_classes/libhk_classes.la
236
libhk_xbasedriver_la_LIBADD = -lxbase -lxbsql ../hk_classes/libhk_classes.la
237
lib_LTLIBRARIES = libhk_xbasedriver.la
237
lib_LTLIBRARIES = libhk_xbasedriver.la
238
noinst_HEADERS = hk_xbaseconnection.h	 hk_xbaseactionquery.h hk_xbaseconnection.h \
238
noinst_HEADERS = hk_xbaseconnection.h	 hk_xbaseactionquery.h hk_xbaseconnection.h \
239
		 hk_xbasedatabase.h hk_xbasedatasource.h hk_xbasecolumn.h \
239
		 hk_xbasedatabase.h hk_xbasedatasource.h hk_xbasecolumn.h \
(-)hk_classes-0.8.3/hk_xbaseclasses/Makefile.am~ (-1 / +1 lines)
Lines 6-12 Link Here
6
AM_CXXFLAGS=  -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings -I@XMLINCLUDE@ @BITARCHITECTURE@
6
AM_CXXFLAGS=  -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings -I@XMLINCLUDE@ @BITARCHITECTURE@
7
7
8
libhk_xbasedriver_la_LDFLAGS = -version-info 0:0:0 -L@XBASELIBDIR@
8
libhk_xbasedriver_la_LDFLAGS = -version-info 0:0:0 -L@XBASELIBDIR@
9
libhk_xbasedriver_la_LIBADD = -lxbsql ../hk_classes/libhk_classes.la
9
libhk_xbasedriver_la_LIBADD = -lxbase -lxbsql ../hk_classes/libhk_classes.la
10
10
11
lib_LTLIBRARIES = 	libhk_xbasedriver.la
11
lib_LTLIBRARIES = 	libhk_xbasedriver.la
12
12

Return to bug 437