Changes work with Qt 3.0 (basically just use obsoleted QTableView class

until I get around to replacing it properly).
This commit is contained in:
warwick
2002-01-17 04:10:23 +00:00
parent 912b4a8d94
commit f86ab80cfb
5 changed files with 2548 additions and 3 deletions

View File

@@ -36,7 +36,13 @@
#include <qarray.h>
#include <qcombobox.h>
#include <qscrollview.h>
#if QT_VERSION >= 300
#include <qttableview.h>
// Should stop using QTableView
#define QTableView QtTableView
#else
#include <qtableview.h>
#endif
#include <qmainwindow.h>
#include <qwidgetstack.h>