Base: remove explicit namespace-name qualifier from *PyImp.cpp
Explicit Base namespace-name is used randomly across PyImp sources. Remove it.
This commit is contained in:
committed by
Benjamin Nauck
parent
24d55dc616
commit
47c1565edf
@@ -132,7 +132,7 @@ Py::Object CoordinateSystemPy::getAxis() const
|
||||
|
||||
void CoordinateSystemPy::setAxis(Py::Object arg)
|
||||
{
|
||||
if (PyObject_TypeCheck(arg.ptr(), &(Base::AxisPy::Type))) {
|
||||
if (PyObject_TypeCheck(arg.ptr(), &(AxisPy::Type))) {
|
||||
AxisPy* axis = static_cast<AxisPy*>(arg.ptr());
|
||||
getCoordinateSystemPtr()->setAxis(*axis->getAxisPtr());
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user