Skip to content

Commit

Permalink
remove superfluous semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Aug 14, 2016
1 parent 65fbd59 commit 9ad3025
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Gui/Quarter/SoQTQuarterAdaptor.h
Expand Up @@ -85,20 +85,20 @@ class QUARTER_DLL_API SoQTQuarterAdaptor : public QuarterWidget {
void setSeekValueAsPercentage(const SbBool on);
SbBool isSeekValuePercentage(void) const;

virtual float getPickRadius(void) const {return this->pickRadius;};
virtual float getPickRadius(void) const {return this->pickRadius;}
virtual void setPickRadius(float pickRadius);

virtual void saveHomePosition(void);
virtual void resetToHomePosition(void);

virtual void setSceneGraph(SoNode* root) {
QuarterWidget::setSceneGraph(root);
};
}

virtual bool processSoEvent(const SoEvent* event);

//this functions still need to be ported
virtual void afterRealizeHook(void) {}; //enables spacenav and joystick in soqt, dunno if this is needed
virtual void afterRealizeHook(void) {} //enables spacenav and joystick in soqt, dunno if this is needed

private:
void init();
Expand Down

0 comments on commit 9ad3025

Please sign in to comment.