Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -196,9 +196,9 @@ bool DrawViewSymbol::loadQDomDocument(QDomDocument& symbolDocument)
|
||||
bool rc = symbolDocument.setContent(qba, nsProcess, &errorMsg, &errorLine, &errorCol);
|
||||
if (!rc) {
|
||||
//invalid SVG message
|
||||
Base::Console().Warning("DrawViewSymbol - %s - SVG for Symbol is not valid. See log.\n",
|
||||
Base::Console().warning("DrawViewSymbol - %s - SVG for Symbol is not valid. See log.\n",
|
||||
getNameInDocument());
|
||||
Base::Console().Log("DrawViewSymbol - %s - len: %d rc: %d error: %s line: %d col: %d\n",
|
||||
Base::Console().log("DrawViewSymbol - %s - len: %d rc: %d error: %s line: %d col: %d\n",
|
||||
getNameInDocument(), strlen(symbol), rc, qPrintable(errorMsg),
|
||||
errorLine, errorCol);
|
||||
}
|
||||
@@ -207,9 +207,9 @@ bool DrawViewSymbol::loadQDomDocument(QDomDocument& symbolDocument)
|
||||
QDomDocument::ParseResult rc = symbolDocument.setContent(qba); // Use the default ParseOptions
|
||||
if (!rc) {
|
||||
//invalid SVG message
|
||||
Base::Console().Warning("DrawViewSymbol - %s - SVG for Symbol is not valid. See log.\n",
|
||||
Base::Console().warning("DrawViewSymbol - %s - SVG for Symbol is not valid. See log.\n",
|
||||
getNameInDocument());
|
||||
Base::Console().Log("DrawViewSymbol - %s - len: %d error: %s line: %d col: %d\n",
|
||||
Base::Console().log("DrawViewSymbol - %s - len: %d error: %s line: %d col: %d\n",
|
||||
getNameInDocument(), strlen(symbol), qPrintable(rc.errorMessage),
|
||||
rc.errorLine, rc.errorColumn);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user