aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/find
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-09-04 16:26:50 +0200
committerTobias Hunger <tobias.hunger@digia.com>2013-09-04 16:27:12 +0200
commitcc80b92bb68bc35e964acdddefb42edbfe83ee28 (patch)
tree7acb90e4c9dd9bb2ca5aec8c4c675ebf3f27c154 /src/plugins/find
parent11a4a6af589b48796802d3836b1c32f6fc55d94e (diff)
Find: Another build fix for windows
Change-Id: I21e85b1536981bb55f0e1e5b46aed7a8a1e460c6 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/find')
-rw-r--r--src/plugins/find/searchresulttreeview.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/find/searchresulttreeview.cpp b/src/plugins/find/searchresulttreeview.cpp
index c4fdf18f8b4..24559fc318e 100644
--- a/src/plugins/find/searchresulttreeview.cpp
+++ b/src/plugins/find/searchresulttreeview.cpp
@@ -35,7 +35,8 @@
#include <QHeaderView>
#include <QKeyEvent>
-using namespace Find::Internal;
+namespace Find {
+namespace Internal {
SearchResultTreeView::SearchResultTreeView(QWidget *parent)
: QTreeView(parent)
@@ -103,3 +104,6 @@ SearchResultTreeModel *SearchResultTreeView::model() const
{
return m_model;
}
+
+} // namespace Internal
+} // namespace Find