diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-06-26 09:43:30 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-06-26 09:46:59 +0200 |
commit | a1263c2e160acfaba4ea205b9135606f49d03af6 (patch) | |
tree | 56580a9514e0010e36e8c5106f29c4c7dcea0d5a | |
parent | ddbc61d871368d751f5162e49ac6f843b69ec841 (diff) |
oox: fix remaining vba doxygen errors
Change-Id: Ic7816065fd5fda640ce85ab25514df76be098b12
-rw-r--r-- | oox/inc/oox/ole/vbacontrol.hxx | 36 | ||||
-rw-r--r-- | oox/inc/oox/ole/vbamodule.hxx | 4 | ||||
-rw-r--r-- | oox/inc/oox/ole/vbaproject.hxx | 14 |
3 files changed, 27 insertions, 27 deletions
diff --git a/oox/inc/oox/ole/vbacontrol.hxx b/oox/inc/oox/ole/vbacontrol.hxx index b4d2afbafeb2..bbe537357558 100644 --- a/oox/inc/oox/ole/vbacontrol.hxx +++ b/oox/inc/oox/ole/vbacontrol.hxx @@ -90,20 +90,20 @@ public: const ControlConverter& rConv ) const; protected: - ::rtl::OUString maName; /// Name of the control. - ::rtl::OUString maTag; /// User defined tag. - ::rtl::OUString maToolTip; /// Tool tip for the control. - ::rtl::OUString maControlSource; /// Linked cell for the control value in a spreadsheet. - ::rtl::OUString maRowSource; /// Source data for the control in a spreadsheet. - - AxPairData maPos; /// Position in parent container. - sal_Int32 mnId; /// Control identifier. - sal_Int32 mnHelpContextId; /// Help context identifier. - sal_uInt32 mnFlags; /// Various flags. - sal_uInt32 mnStreamLen; /// Size of control stream data. - sal_Int16 mnTabIndex; /// Tab order index. - sal_uInt16 mnClassIdOrCache; /// Class name identifier or GUID cache index. - sal_uInt16 mnGroupId; /// Group identifier for grouped controls. + ::rtl::OUString maName; ///< Name of the control. + ::rtl::OUString maTag; ///< User defined tag. + ::rtl::OUString maToolTip; ///< Tool tip for the control. + ::rtl::OUString maControlSource; ///< Linked cell for the control value in a spreadsheet. + ::rtl::OUString maRowSource; ///< Source data for the control in a spreadsheet. + + AxPairData maPos; ///< Position in parent container. + sal_Int32 mnId; ///< Control identifier. + sal_Int32 mnHelpContextId; ///< Help context identifier. + sal_uInt32 mnFlags; ///< Various flags. + sal_uInt32 mnStreamLen; ///< Size of control stream data. + sal_Int16 mnTabIndex; ///< Tab order index. + sal_uInt16 mnClassIdOrCache; ///< Class name identifier or GUID cache index. + sal_uInt16 mnGroupId; ///< Group identifier for grouped controls. }; typedef ::boost::shared_ptr< VbaSiteModel > VbaSiteModelRef; @@ -173,12 +173,12 @@ private: static bool compareByTabIndex( const VbaFormControlRef& rxLeft, const VbaFormControlRef& rxRight ); protected: - VbaSiteModelRef mxSiteModel; /// Common control properties. - ControlModelRef mxCtrlModel; /// Specific control properties. + VbaSiteModelRef mxSiteModel; ///< Common control properties. + ControlModelRef mxCtrlModel; ///< Specific control properties. private: - VbaFormControlVector maControls; /// All embedded form controls. - AxClassTable maClassTable; /// Class identifiers for exotic embedded controls. + VbaFormControlVector maControls; ///< All embedded form controls. + AxClassTable maClassTable; ///< Class identifiers for exotic embedded controls. }; // ============================================================================ diff --git a/oox/inc/oox/ole/vbamodule.hxx b/oox/inc/oox/ole/vbamodule.hxx index 2e83b3e06af6..5e1725d3f9ef 100644 --- a/oox/inc/oox/ole/vbamodule.hxx +++ b/oox/inc/oox/ole/vbamodule.hxx @@ -100,9 +100,9 @@ private: private: ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > - mxContext; /// Component context with service manager. + mxContext; ///< Component context with service manager. ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > - mxDocModel; /// Document model used to import/export the VBA project. + mxDocModel; ///< Document model used to import/export the VBA project. ::rtl::OUString maName; ::rtl::OUString maStreamName; ::rtl::OUString maDocString; diff --git a/oox/inc/oox/ole/vbaproject.hxx b/oox/inc/oox/ole/vbaproject.hxx index cb1ee4f8f1d4..febc0baae7e2 100644 --- a/oox/inc/oox/ole/vbaproject.hxx +++ b/oox/inc/oox/ole/vbaproject.hxx @@ -191,16 +191,16 @@ private: typedef ::std::map< ::rtl::OUString, sal_Int32 > DummyModuleMap; ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > - mxContext; /// Component context with service manager. + mxContext; ///< Component context with service manager. ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > - mxDocModel; /// Document model used to import/export the VBA project. + mxDocModel; ///< Document model used to import/export the VBA project. ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > - mxBasicLib; /// The Basic library of the document used for import. + mxBasicLib; ///< The Basic library of the document used for import. ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > - mxDialogLib; /// The dialog library of the document used for import. - MacroAttacherVector maMacroAttachers; /// Objects that want to attach a VBA macro to an action. - DummyModuleMap maDummyModules; /// Additional empty modules created on import. - ::rtl::OUString maPrjName; /// Name of the VBA project. + mxDialogLib; ///< The dialog library of the document used for import. + MacroAttacherVector maMacroAttachers; ///< Objects that want to attach a VBA macro to an action. + DummyModuleMap maDummyModules; ///< Additional empty modules created on import. + ::rtl::OUString maPrjName; ///< Name of the VBA project. ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > mxOleOverridesSink; }; |