Mod: redundant void 2
This commit is contained in:
@@ -45,7 +45,7 @@ using namespace std;
|
||||
|
||||
PROPERTY_SOURCE(TechDraw::DrawViewClip, TechDraw::DrawView)
|
||||
|
||||
DrawViewClip::DrawViewClip(void)
|
||||
DrawViewClip::DrawViewClip()
|
||||
{
|
||||
static const char *group = "Clip Group";
|
||||
//App::PropertyType hidden = (App::PropertyType)(App::Prop_Hidden);
|
||||
@@ -104,7 +104,7 @@ void DrawViewClip::removeView(DrawView *view)
|
||||
Views.setValues(newViews);
|
||||
}
|
||||
|
||||
App::DocumentObjectExecReturn *DrawViewClip::execute(void)
|
||||
App::DocumentObjectExecReturn *DrawViewClip::execute()
|
||||
{
|
||||
if (!keepUpdated()) {
|
||||
return App::DocumentObject::StdReturn;
|
||||
@@ -159,7 +159,7 @@ bool DrawViewClip::isViewInClip(App::DocumentObject* view)
|
||||
return false;
|
||||
}
|
||||
|
||||
PyObject *DrawViewClip::getPyObject(void)
|
||||
PyObject *DrawViewClip::getPyObject()
|
||||
{
|
||||
if (PythonObject.is(Py::_None())) {
|
||||
// ref counter is set to 1
|
||||
@@ -174,7 +174,7 @@ PyObject *DrawViewClip::getPyObject(void)
|
||||
namespace App {
|
||||
/// @cond DOXERR
|
||||
PROPERTY_SOURCE_TEMPLATE(TechDraw::DrawViewClipPython, TechDraw::DrawViewClip)
|
||||
template<> const char* TechDraw::DrawViewClipPython::getViewProviderName(void) const {
|
||||
template<> const char* TechDraw::DrawViewClipPython::getViewProviderName() const {
|
||||
return "TechDrawGui::ViewProviderViewClip";
|
||||
}
|
||||
/// @endcond
|
||||
|
||||
Reference in New Issue
Block a user