Console: rename PascalCase named methods to camelCase
This commit is contained in:
@@ -75,7 +75,7 @@ bool ViewProviderGroupExtension::extensionCanDropObjects() const {
|
||||
bool ViewProviderGroupExtension::extensionCanDropObject(App::DocumentObject* obj) const
|
||||
{
|
||||
#ifdef FC_DEBUG
|
||||
Base::Console().Log("Check ViewProviderGroupExtension\n");
|
||||
Base::Console().log("Check ViewProviderGroupExtension\n");
|
||||
#endif
|
||||
|
||||
auto extobj = getExtendedViewProvider()->getObject();
|
||||
@@ -89,7 +89,7 @@ bool ViewProviderGroupExtension::extensionCanDropObject(App::DocumentObject* obj
|
||||
// Check for possible cyclic dependencies if we allowed to drop the object
|
||||
const auto& list = obj->getOutList();
|
||||
if (std::ranges::find(list, extobj) != list.end()) {
|
||||
Base::Console().Warning("Do not add cyclic dependency to %s\n", extobj->Label.getValue());
|
||||
Base::Console().warning("Do not add cyclic dependency to %s\n", extobj->Label.getValue());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user