From 05172c57e87721ec44a780734f75806c521de709 Mon Sep 17 00:00:00 2001 From: Laurent Pugin Date: Wed, 18 Sep 2024 17:25:08 +0200 Subject: [PATCH] Remove extraneous ; [skip-ci] --- include/vrv/devicecontext.h | 10 +++++----- include/vrv/layerelement.h | 2 +- include/vrv/view.h | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/vrv/devicecontext.h b/include/vrv/devicecontext.h index 95c62a81208..2ea67fa582e 100644 --- a/include/vrv/devicecontext.h +++ b/include/vrv/devicecontext.h @@ -211,7 +211,7 @@ class DeviceContext { * Special method for forcing bounding boxes to be updated * Used for invisible elements (e.g., ) 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 @@ -262,14 +262,14 @@ class DeviceContext { * For example, the method can be used for grouping shapes in 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 @@ -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){}; ///@} /** diff --git a/include/vrv/layerelement.h b/include/vrv/layerelement.h index 4740e64373b..08fea261efe 100644 --- a/include/vrv/layerelement.h +++ b/include/vrv/layerelement.h @@ -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) diff --git a/include/vrv/view.h b/include/vrv/view.h index e7faedd7ad1..82719ece3c2 100644 --- a/include/vrv/view.h +++ b/include/vrv/view.h @@ -122,7 +122,7 @@ class View { virtual void DoRefresh() {} virtual void DoResize() {} virtual void DoReset() {} - virtual void OnPageChange() {}; + virtual void OnPageChange() {} ///@} /**