From 608dee4f5fbf10ba4c0f8c971f4f93b23be006fa Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 11 Jan 2016 13:11:27 +0100 Subject: loplugin:privatebase: Make various derivations public ...assuming they were implicitly made private by accident rather than by design. (And private derivation can cause unexpected failure of dynamic_cast, cf. 63b67ab5cab8cf7576a68cabe5fb1a42c6ad800c "Use public derivation, and remove then-unnecessary downcasts.") Change-Id: Id821afba34fd2f155e30fac903567707e46d1fde --- starmath/inc/smmod.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'starmath') diff --git a/starmath/inc/smmod.hxx b/starmath/inc/smmod.hxx index 4a53375063f3..57158a4b06a5 100644 --- a/starmath/inc/smmod.hxx +++ b/starmath/inc/smmod.hxx @@ -85,7 +85,7 @@ public: static const OUString GetExportSymbolSetName( const OUString &rUiName ); }; -class SmModule : public SfxModule, utl::ConfigurationListener +class SmModule : public SfxModule, public utl::ConfigurationListener { std::unique_ptr mpColorConfig; std::unique_ptr mpConfig; -- cgit