summaryrefslogtreecommitdiff
path: root/cui/source/dialogs
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2012-07-25 19:11:46 +0200
committerEike Rathke <erack@redhat.com>2012-07-25 19:13:03 +0200
commit101baf42f931344e4a8330e4c512dc7a4f2fe8a9 (patch)
tree205ceba9ec2ddf6e9d980ac9d264dbe66ee4c34b /cui/source/dialogs
parent8a01af8c7c27e93154733fc7a0a318c0d22cfbcd (diff)
changes to "Modifying comments to follow Doxygen standards"
Change-Id: I82c358946c611b5b309d537f76b0b6371c82cbfa
Diffstat (limited to 'cui/source/dialogs')
-rw-r--r--cui/source/dialogs/commonlingui.hxx10
-rw-r--r--cui/source/dialogs/thesdlg_impl.hxx6
2 files changed, 9 insertions, 7 deletions
diff --git a/cui/source/dialogs/commonlingui.hxx b/cui/source/dialogs/commonlingui.hxx
index 81931a9bf5f8..753db81c5bec 100644
--- a/cui/source/dialogs/commonlingui.hxx
+++ b/cui/source/dialogs/commonlingui.hxx
@@ -110,10 +110,7 @@ public:
inline PushButton* GetButton( ButtonType _eType ) { return implGetButton( _eType ); }
inline const PushButton* GetButton( ButtonType _eType ) const { return implGetButton( _eType ); }
- /** users of this class may want to insert own controls in some places, where the ordinary
- Z-Order determined by construction time is not sufficient
- Use the following methods for this
- control groups in this window which cannot be devided (e.g. are adjacent in the Z order)*/
+ /// control groups in this window which cannot be devided (e.g. are adjacent in the Z order)
enum ControlGroup
{
eLeftRightWords, ///< the controls for the two words (original and suggestion), including the labels
@@ -121,6 +118,11 @@ public:
eActionButtons, ///< the group of "ignore(all)" / "change(all)" buttons
eDialogButtons ///< the group of dialog control buttons (help and close)
};
+
+ /** Users of this class may want to insert own controls in some places,
+ where the ordinary Z-Order determined by construction time is not
+ sufficient. Use the following methods for this.
+ */
void InsertControlGroup( Window& _rFirstGroupWindow, Window& _rLastGroupWindow, ControlGroup _eInsertAfter );
/** enlarges the window
diff --git a/cui/source/dialogs/thesdlg_impl.hxx b/cui/source/dialogs/thesdlg_impl.hxx
index 0c4af351e1dc..36ad201d59f8 100644
--- a/cui/source/dialogs/thesdlg_impl.hxx
+++ b/cui/source/dialogs/thesdlg_impl.hxx
@@ -68,7 +68,7 @@ class LookUpComboBox_Impl : public ComboBox
Button * m_pBtn;
SvxThesaurusDialog_Impl & m_rDialogImpl;
- /// disable copy c-factor and assignment operator
+ /// disable copy ctor and assignment operator
LookUpComboBox_Impl( const LookUpComboBox_Impl & );
LookUpComboBox_Impl & operator = ( const LookUpComboBox_Impl & );
@@ -90,7 +90,7 @@ class ReplaceEdit_Impl : public Edit
{
Button * m_pBtn;
- /// disable copy c-factor and assignment operator
+ /// disable copy ctor and assignment operator
ReplaceEdit_Impl( const ReplaceEdit_Impl & );
ReplaceEdit_Impl & operator = ( const ReplaceEdit_Impl & );
@@ -146,7 +146,7 @@ class ThesaurusAlternativesCtrl_Impl :
typedef std::map< const SvLBoxEntry *, AlternativesExtraData > UserDataMap_t;
UserDataMap_t m_aUserData;
- /// disable copy c-factor and assignment operator
+ /// disable copy ctor and assignment operator
ThesaurusAlternativesCtrl_Impl( const ThesaurusAlternativesCtrl_Impl & );
ThesaurusAlternativesCtrl_Impl & operator = ( const ThesaurusAlternativesCtrl_Impl & );