1.1 --- a/as_table.h Fri Nov 28 14:20:00 2008 +0100 1.2 +++ b/as_table.h Fri Dec 05 23:14:02 2008 +0100 1.3 @@ -1,12 +1,12 @@ 1.4 // 1.5 // OSSP asgui - Accounting system graphical user interface 1.6 -// Copyright (c) 2002-2004 The OSSP Project (http://www.ossp.org/) 1.7 -// Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com> 1.8 -// Copyright (c) 2002-2004 Michael Schloh von Bennewitz <michael@schloh.com> 1.9 -// Copyright (c) 2002-2004 Cable & Wireless Telecommunications Services GmbH 1.10 +// Copyright (c) 2002-2008 The OSSP Project (http://www.ossp.org/) 1.11 +// Copyright (c) 2002-2008 Ralf S. Engelschall <rse@engelschall.com> 1.12 +// Copyright (c) 2002-2008 Michael Schloh von Bennewitz <michael@schloh.com> 1.13 +// Copyright (c) 2002-2008 Cable & Wireless Telecommunications Services GmbH 1.14 // 1.15 // This file is part of OSSP asgui, an accounting system graphical user 1.16 -// interface which can be found at http://www.ossp.org/pkg/tool/asgui/. 1.17 +// interface which can be found at http://asgui.europalab.com/. 1.18 // 1.19 // Permission to use, copy, modify, and distribute this software for 1.20 // any purpose with or without fee is hereby granted, provided that 1.21 @@ -32,12 +32,15 @@ 1.22 #ifndef TITABLE_H 1.23 #define TITABLE_H 1.24 1.25 -#include <qtable.h> 1.26 +#include <q3table.h> 1.27 + 1.28 +//Added by qt3to4: 1.29 +#include <QEvent> 1.30 1.31 #include "as_pref.h" 1.32 1.33 1.34 -class TiTable : public QTable 1.35 +class TiTable : public Q3Table 1.36 { 1.37 Q_OBJECT 1.38 1.39 @@ -49,7 +52,7 @@ 1.40 1.41 public: 1.42 // Try to match QTable's default constructor with an initializer list 1.43 - TiTable(Preferences *pPrefs, QWidget *pParent = 0, const char *szName = 0) : QTable(pParent, szName) 1.44 + TiTable(Preferences *pPrefs, QWidget *pParent = 0, const char *szName = 0) : Q3Table(pParent, szName) 1.45 { 1.46 this->setSortcol(0); 1.47 this->setSortdir(true);