Kaydet (Commit) 033ff2f9 authored tarafından Arnaud Versini's avatar Arnaud Versini Kaydeden (comit) Noel Grandin

comphelper: cleanup class NameContainer.

Remove useless class NameContainerImpl.

Change-Id: I3066abea69ed68d597aeecdd6b3ec7264f7ebe9c
Reviewed-on: https://gerrit.libreoffice.org/31830Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 02ed1924
......@@ -31,14 +31,8 @@ typedef std::map<OUString, css::uno::Any> SvGenericNameContainerMapImpl;
namespace comphelper
{
class NameContainerImpl
{
public:
osl::Mutex maMutex;
};
/** this is the base helper class for NameContainer thats also declared in this header. */
class NameContainer : public ::cppu::WeakImplHelper< css::container::XNameContainer >, private NameContainerImpl
class NameContainer : public ::cppu::WeakImplHelper< css::container::XNameContainer >
{
public:
explicit NameContainer( css::uno::Type aType );
......@@ -74,6 +68,7 @@ namespace comphelper
private:
SvGenericNameContainerMapImpl maProperties;
const css::uno::Type maType;
osl::Mutex maMutex;
};
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment