Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -83,7 +83,7 @@ QGIRichAnno::QGIRichAnno() :
|
||||
|
||||
void QGIRichAnno::updateView(bool update)
|
||||
{
|
||||
// Base::Console().Message("QGIRA::updateView() - %s\n", getViewName());
|
||||
// Base::Console().message("QGIRA::updateView() - %s\n", getViewName());
|
||||
Q_UNUSED(update);
|
||||
auto annoFeat( dynamic_cast<TechDraw::DrawRichAnno*>(getViewObject()) );
|
||||
if (!annoFeat) {
|
||||
@@ -122,19 +122,19 @@ void QGIRichAnno::drawBorder()
|
||||
|
||||
void QGIRichAnno::draw()
|
||||
{
|
||||
// Base::Console().Log("QGIRA::draw() - %s - parent: %X\n", getFeature()->getNameInDocument(), parentItem());
|
||||
// Base::Console().log("QGIRA::draw() - %s - parent: %X\n", getFeature()->getNameInDocument(), parentItem());
|
||||
if (!isVisible())
|
||||
// Base::Console().Message("QGIRA::draw - not visible\n");
|
||||
// Base::Console().message("QGIRA::draw - not visible\n");
|
||||
return;
|
||||
|
||||
TechDraw::DrawRichAnno* annoFeat = getFeature();
|
||||
if (!annoFeat)
|
||||
// Base::Console().Message("QGIRA::draw - no feature\n");
|
||||
// Base::Console().message("QGIRA::draw - no feature\n");
|
||||
return;
|
||||
|
||||
auto vp = static_cast<ViewProviderRichAnno*>(getViewProvider(getFeature()));
|
||||
if (!vp) {
|
||||
// Base::Console().Message("QGIRA::draw - no viewprovider\n");
|
||||
// Base::Console().message("QGIRA::draw - no viewprovider\n");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -145,7 +145,7 @@ void QGIRichAnno::draw()
|
||||
|
||||
void QGIRichAnno::setTextItem()
|
||||
{
|
||||
// Base::Console().Message("QGIRA::setTextItem() - %s - exportingSvg: %d\n", getViewName(), getExportingSvg());
|
||||
// Base::Console().message("QGIRA::setTextItem() - %s - exportingSvg: %d\n", getViewName(), getExportingSvg());
|
||||
TechDraw::DrawRichAnno* annoFeat = getFeature();
|
||||
|
||||
// convert the text size
|
||||
|
||||
Reference in New Issue
Block a user