forked from qt-creator/qt-creator
ModelEditor: Apply naming convention to getters
Change-Id: If9eaaf0dc54e26e4b7e2b8952efd951a9113f104 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -90,9 +90,9 @@ void ConfigController::readStereotypeDefinitions(const QString &path)
|
||||
try {
|
||||
parser.parse(&source);
|
||||
} catch (StereotypeDefinitionParserError x) {
|
||||
qDebug() << x.getErrorMsg() << "in line" << x.getSourcePos().getLineNumber();
|
||||
qDebug() << x.errorMessage() << "in line" << x.sourcePos().lineNumber();
|
||||
} catch (TextScannerError x) {
|
||||
qDebug() << x.getErrorMsg() << "in line" << x.getSourcePos().getLineNumber();
|
||||
qDebug() << x.errorMessage() << "in line" << x.sourcePos().lineNumber();
|
||||
} catch (...) {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user