From ba248174339c5735c7dbe06dc2499b3365d224a0 Mon Sep 17 00:00:00 2001 From: anv Date: Wed, 26 Jun 2024 15:04:45 +0100 Subject: [PATCH] 0033748: OCCT:Coding - Changing function signature to a more common one Changing function virtual specifier and return type order to a more common to avoid wrapping issues. --- src/DE/DE_ConfigurationNode.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DE/DE_ConfigurationNode.hxx b/src/DE/DE_ConfigurationNode.hxx index 4f06830c9e..45b653338f 100644 --- a/src/DE/DE_ConfigurationNode.hxx +++ b/src/DE/DE_ConfigurationNode.hxx @@ -147,7 +147,7 @@ public: //! //! The main goal - real-time loading plug-in activation. //! OpenSource components don't need to have activation process. - Standard_EXPORT void virtual CustomActivation(const TColStd_ListOfAsciiString&) {}; + Standard_EXPORT virtual void CustomActivation(const TColStd_ListOfAsciiString&) {}; public: