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

@@ -37,23 +37,27 @@
namespace GenericProjectManager {
namespace Internal {
class GenericProjectWizardDialog;
class SelectableFilesModel;
class FilesSelectionWizardPage : public QWizardPage
{
Q_OBJECT
public:
FilesSelectionWizardPage(GenericProjectWizardDialog *genericProjectWizard, QWidget *parent = 0);
virtual bool isComplete() const;
virtual void initializePage();
virtual void cleanupPage();
bool isComplete() const;
void initializePage();
void cleanupPage();
QStringList selectedFiles() const;
QStringList selectedPaths() const;
private slots:
void applyFilter();
void parsingProgress(const QString &text);
void parsingFinished();
private:
GenericProjectWizardDialog *m_genericProjectWizardDialog;
SelectableFilesModel *m_model;
@@ -65,6 +69,7 @@ private:
bool m_finished;
};
}
}
} // namespace Internal
} // namespace GenericProjectManager
#endif // FILESSELECTIONWIZARDPAGE_H