From a61728f6ee909f492768508883a42689140e0e48 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <thorbjorn.lindeijer@nokia.com>
Date: Fri, 19 Mar 2010 14:01:11 +0100
Subject: [PATCH] No need to export these constants

---
 src/plugins/qmlinspector/components/watchtable.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/plugins/qmlinspector/components/watchtable.cpp b/src/plugins/qmlinspector/components/watchtable.cpp
index eb710d75524..9dd2a7757de 100644
--- a/src/plugins/qmlinspector/components/watchtable.cpp
+++ b/src/plugins/qmlinspector/components/watchtable.cpp
@@ -38,9 +38,9 @@
 
 QT_BEGIN_NAMESPACE
 
-const int C_NAME = 0;
-const int C_VALUE = 1;
-const int C_COLUMNS = 2;
+static const int C_NAME = 0;
+static const int C_VALUE = 1;
+static const int C_COLUMNS = 2;
 
 WatchTableModel::WatchTableModel(QDeclarativeEngineDebug *client, QObject *parent)
     : QAbstractTableModel(parent),
-- 
GitLab