genericprojectmanager: code cosmetic

White space, namespaces, include order, comments, literal style,
remove unneded include/declarations etc.

Change-Id: Ifcb4371699c5cde244be1610b67cf81915cad2b2
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-08-14 15:37:38 +02:00
parent 588452663c
commit 5d5a483961
22 changed files with 266 additions and 288 deletions

View File

@@ -35,14 +35,15 @@
#include <coreplugin/icore.h>
#include <utils/QtConcurrentTools>
#include <QHBoxLayout>
#include <QDialogButtonBox>
#include <QTreeView>
#include <QHBoxLayout>
#include <QLineEdit>
#include <QPushButton>
#include <QTreeView>
using namespace GenericProjectManager;
using namespace GenericProjectManager::Internal;
namespace GenericProjectManager {
namespace Internal {
SelectableFilesModel::SelectableFilesModel(const QString &baseDir, QObject *parent)
: QAbstractItemModel(parent), m_root(0), m_baseDir(baseDir), m_allFiles(true)
@@ -613,3 +614,6 @@ void SelectableFilesDialog::applyFilter()
Core::ICore::settings()->setValue(Constants::FILEFILTER_SETTING, filter);
m_selectableFilesModel->applyFilter(filter);
}
} // namespace Internal
} // namespace GenericProjectManager