forked from qt-creator/qt-creator
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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user