Fix MSVC compiler warning C4275 (#361)

The CFloatingDockContainer is exported, but inherits from a base
class that is not exported. This triggers a compiler warning under
MSVC toolchain. This patch fixes the issue by exporting the
IFloatingWidget class.
This commit is contained in:
Francis Hart 2021-10-08 20:40:30 +03:00 committed by GitHub
parent 5f89dd0465
commit a24221c002
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,7 @@ class CDockingStateReader;
* This interface is used for opaque and non-opaque undocking. If opaque * This interface is used for opaque and non-opaque undocking. If opaque
* undocking is used, the a real CFloatingDockContainer widget will be created * undocking is used, the a real CFloatingDockContainer widget will be created
*/ */
class IFloatingWidget class ADS_EXPORT IFloatingWidget
{ {
public: public:
virtual ~IFloatingWidget() = default; virtual ~IFloatingWidget() = default;