From: anv Date: Wed, 26 Jun 2024 11:52:43 +0000 (+0100) Subject: 0033748: OCCT:Coding - Changing function signature to a more common one X-Git-Tag: V7_9_0_beta1~194 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=100d03d273c76addabf1105ba865c5434d7fbeb1;p=occt.git 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. --- 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: