aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/locator/opendocumentsfilter.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-11-16 10:52:41 +0200
committerhjk <hjk121@nokiamail.com>2014-11-26 13:46:38 +0100
commit7f341580412847d325ffa4f7a82d27a763ff598f (patch)
treeaa1f40058022372d26876d8ed6b7649425ab3f69 /src/plugins/coreplugin/locator/opendocumentsfilter.h
parent6804c2117915e84dd37a793ae5c99321acbdd85b (diff)
Core: Cosmetics
* Remove redundant namespace qualifiers * Qt5-ify some signal/slot connections * Replace some using Core::Internal with explicit namespace scopes Change-Id: Id1aae05e2c6fc2992c2716e1f8f9e985c6e56122 Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/coreplugin/locator/opendocumentsfilter.h')
-rw-r--r--src/plugins/coreplugin/locator/opendocumentsfilter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/coreplugin/locator/opendocumentsfilter.h b/src/plugins/coreplugin/locator/opendocumentsfilter.h
index d3d0dd5117..1e3aa2c092 100644
--- a/src/plugins/coreplugin/locator/opendocumentsfilter.h
+++ b/src/plugins/coreplugin/locator/opendocumentsfilter.h
@@ -43,24 +43,24 @@
namespace Core {
namespace Internal {
-class OpenDocumentsFilter : public Core::ILocatorFilter
+class OpenDocumentsFilter : public ILocatorFilter
{
Q_OBJECT
public:
OpenDocumentsFilter();
- QList<Core::LocatorFilterEntry> matchesFor(QFutureInterface<Core::LocatorFilterEntry> &future, const QString &entry);
- void accept(Core::LocatorFilterEntry selection) const;
+ QList<LocatorFilterEntry> matchesFor(QFutureInterface<LocatorFilterEntry> &future, const QString &entry);
+ void accept(LocatorFilterEntry selection) const;
void refresh(QFutureInterface<void> &future);
public slots:
void refreshInternally();
private:
- QList<Core::DocumentModel::Entry> editors() const;
+ QList<DocumentModel::Entry> editors() const;
mutable QMutex m_mutex;
- QList<Core::DocumentModel::Entry> m_editors;
+ QList<DocumentModel::Entry> m_editors;
};
} // namespace Internal