Skip to content

Commit

Permalink
Remove extraneous ; [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Sep 18, 2024
1 parent ecf1d39 commit 05172c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions include/vrv/devicecontext.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class DeviceContext {
* Special method for forcing bounding boxes to be updated
* Used for invisible elements (e.g., <space>) that needs to be take into account in spacing
*/
virtual void DrawPlaceholder(int x, int y) {};
virtual void DrawPlaceholder(int x, int y) {}

/**
* @name Method for starting and ending a text
Expand Down Expand Up @@ -262,14 +262,14 @@ class DeviceContext {
* For example, the method can be used for grouping shapes in <g></g> in SVG
*/
///@{
virtual void StartCustomGraphic(const std::string &name, std::string gClass = "", std::string gId = "") {};
virtual void EndCustomGraphic() {};
virtual void StartCustomGraphic(const std::string &name, std::string gClass = "", std::string gId = ""){};
virtual void EndCustomGraphic(){};
///@}

/**
* Method for changing the color of a custom graphic
*/
virtual void SetCustomGraphicColor(const std::string &color) {};
virtual void SetCustomGraphicColor(const std::string &color){};

/**
* @name Methods for re-starting and ending a graphic for objects drawn in separate steps
Expand Down Expand Up @@ -312,7 +312,7 @@ class DeviceContext {
* @name Method for adding description element
*/
///@{
virtual void AddDescription(const std::string &text) {};
virtual void AddDescription(const std::string &text){};
///@}

/**
Expand Down
2 changes: 1 addition & 1 deletion include/vrv/layerelement.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ class LayerElement : public Object,
/**
* Helper function to set shortening for elements with beam interface
*/
virtual void SetElementShortening(int shortening) {};
virtual void SetElementShortening(int shortening) {}

/**
* Get the stem mod for the element (if any)
Expand Down
2 changes: 1 addition & 1 deletion include/vrv/view.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class View {
virtual void DoRefresh() {}
virtual void DoResize() {}
virtual void DoReset() {}
virtual void OnPageChange() {};
virtual void OnPageChange() {}
///@}

/**
Expand Down

0 comments on commit 05172c5

Please sign in to comment.