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:
@@ -37,8 +37,7 @@ using namespace Android::Internal;
|
||||
using namespace ProjectExplorer;
|
||||
|
||||
JavaParser::JavaParser() :
|
||||
ProjectExplorer::IOutputParser()
|
||||
, m_javaRegExp(QLatin1String("^(.*\\[javac\\]\\s)(.*\\.java):(\\d+):(.*)$"))
|
||||
m_javaRegExp(QLatin1String("^(.*\\[javac\\]\\s)(.*\\.java):(\\d+):(.*)$"))
|
||||
{
|
||||
}
|
||||
|
||||
@@ -65,7 +64,7 @@ void JavaParser::stdError(const QString &line)
|
||||
m_javaRegExp.cap(4).trimmed(),
|
||||
Utils::FileName::fromString(file) /* filename */,
|
||||
lineno,
|
||||
ProjectExplorer::Constants::TASK_CATEGORY_COMPILE);
|
||||
Constants::TASK_CATEGORY_COMPILE);
|
||||
emit addTask(task);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user