Kaydet (Commit) b6c522be authored tarafından Stephan Bergmann's avatar Stephan Bergmann Kaydeden (comit) Ashod Nakashian

-Werror,-Wunused-private-field

Change-Id: Id85b4709e295453dfd351978096596aef09ce9a9
(cherry picked from commit 85906140)
(cherry picked from commit bd988596)
üst 7fb8f19f
......@@ -95,7 +95,6 @@ class DocObjectWrapper : public DocObjectWrapper_BASE
SbModule* m_pMod;
SbMethodRef getMethod( const OUString& aName ) throw (RuntimeException, std::exception);
SbPropertyRef getProperty( const OUString& aName ) throw (RuntimeException, std::exception);
OUString mName; // for debugging
public:
explicit DocObjectWrapper( SbModule* pMod );
......@@ -117,7 +116,7 @@ public:
virtual Sequence< Type > SAL_CALL getTypes() throw ( RuntimeException, std::exception ) override;
};
DocObjectWrapper::DocObjectWrapper( SbModule* pVar ) : m_pMod( pVar ), mName( pVar->GetName() )
DocObjectWrapper::DocObjectWrapper( SbModule* pVar ) : m_pMod( pVar )
{
SbObjModule* pMod = dynamic_cast<SbObjModule*>( pVar );
if ( pMod )
......
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