forked from qt-creator/qt-creator
android: code cosmetics
Fix whitespace, capitalization, naming, comments, add 'using' in .cpp, remove 'using' in .h, remove unneeded Q_UNUSED, add needed Q_UNUSED, etc. Change-Id: Ibf9ba57850cbea1e79e152ec0165c8b01fa66567 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
|
||||
#ifndef JAVAPARSER_H
|
||||
#define JAVAPARSER_H
|
||||
|
||||
#include <projectexplorer/ioutputparser.h>
|
||||
|
||||
namespace Android {
|
||||
@@ -38,11 +39,13 @@ namespace Internal {
|
||||
class JavaParser : public ProjectExplorer::IOutputParser
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
JavaParser();
|
||||
virtual void stdOutput(const QString &line);
|
||||
virtual void stdError(const QString &line);
|
||||
void stdOutput(const QString &line);
|
||||
void stdError(const QString &line);
|
||||
void setProjectFileList(const QStringList &fileList);
|
||||
|
||||
private:
|
||||
QRegExp m_javaRegExp;
|
||||
QStringList m_fileList;
|
||||
|
||||
Reference in New Issue
Block a user