forked from qt-creator/qt-creator
ProjectExplorer: Remove redundant namespace qualifications
Change-Id: Id9034e31f3f61c38894111951534dd0d59b746dc Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -34,9 +34,10 @@
|
||||
|
||||
#include <QAction>
|
||||
|
||||
using namespace ProjectExplorer::Internal;
|
||||
namespace ProjectExplorer {
|
||||
namespace Internal {
|
||||
|
||||
void RemoveTaskHandler::handle(const ProjectExplorer::Task &task)
|
||||
void RemoveTaskHandler::handle(const Task &task)
|
||||
{
|
||||
TaskHub::removeTask(task);
|
||||
}
|
||||
@@ -49,3 +50,6 @@ QAction *RemoveTaskHandler::createAction(QObject *parent) const
|
||||
removeAction->setShortcutContext(Qt::WidgetWithChildrenShortcut);
|
||||
return removeAction;
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace ProjectExplorer
|
||||
|
||||
Reference in New Issue
Block a user