Kaydet (Commit) e78b2fbc authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Store the module name here. I need to use it in the recent files menu.

Change-Id: Ib074b6a4ac6c2fe89edf0a0e4b2faf2d8a8eae68
üst 7c289cad
......@@ -131,6 +131,7 @@ namespace svt
bool m_bInitialized;
rtl::OUString m_aCommandURL;
rtl::OUString m_aBaseURL;
rtl::OUString m_aModuleName;
::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xDispatch;
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > m_xServiceManager;
......
......@@ -373,6 +373,8 @@ void SAL_CALL PopupMenuControllerBase::initialize( const Sequence< Any >& aArgum
aPropValue.Value >>= xFrame;
else if ( aPropValue.Name == "CommandURL" )
aPropValue.Value >>= aCommandURL;
else if ( aPropValue.Name == "ModuleName" )
aPropValue.Value >>= m_aModuleName;
}
}
......
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