Revert "No need to export these constants"

This reverts commit a61728f6ee.
This was a non-change, since const int is implicitly static in C++.
This commit is contained in:
Thorbjørn Lindeijer
2010-03-19 15:36:54 +01:00
parent 48c4d6c05b
commit 909285731f

View File

@@ -38,9 +38,9 @@
QT_BEGIN_NAMESPACE
static const int C_NAME = 0;
static const int C_VALUE = 1;
static const int C_COLUMNS = 2;
const int C_NAME = 0;
const int C_VALUE = 1;
const int C_COLUMNS = 2;
WatchTableModel::WatchTableModel(QDeclarativeEngineDebug *client, QObject *parent)
: QAbstractTableModel(parent),