diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-01-08 23:08:34 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-01-09 00:00:47 +0100 |
commit | 2f69e16c723aab48ad59d17397d8946ec0a48138 (patch) | |
tree | f59943e7a27ad60eda30cab8cdc3e8e716401db2 /svx/source/dialog | |
parent | d7bebc89c19d70344a8d71c729bbcb3a59004114 (diff) |
override the overloading of "overload" to decrease cognitive (over-)load
Change-Id: I4d0e1de89d0bbdbea23bc5a46bf75ae0ce4e2796
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/SpellDialogChildWindow.cxx | 6 | ||||
-rw-r--r-- | svx/source/dialog/svxruler.cxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/dialog/SpellDialogChildWindow.cxx b/svx/source/dialog/SpellDialogChildWindow.cxx index 72106d4a52d5..01d34f4660fe 100644 --- a/svx/source/dialog/SpellDialogChildWindow.cxx +++ b/svx/source/dialog/SpellDialogChildWindow.cxx @@ -70,7 +70,7 @@ void SpellDialogChildWindow::AddAutoCorrection( const OUString& /*rNew*/, LanguageType /*eLanguage*/) { - OSL_FAIL("AutoCorrection should have been overloaded - if available"); + OSL_FAIL("AutoCorrection should have been overridden - if available"); } bool SpellDialogChildWindow::HasGrammarChecking() @@ -80,13 +80,13 @@ bool SpellDialogChildWindow::HasGrammarChecking() bool SpellDialogChildWindow::IsGrammarChecking() { - OSL_FAIL("Grammar checking should have been overloaded - if available"); + OSL_FAIL("Grammar checking should have been overridden - if available"); return false; } void SpellDialogChildWindow::SetGrammarChecking(bool ) { - OSL_FAIL("Grammar checking should have been overloaded - if available"); + OSL_FAIL("Grammar checking should have been overridden - if available"); } } // end of namespace ::svx diff --git a/svx/source/dialog/svxruler.cxx b/svx/source/dialog/svxruler.cxx index a7b287a52465..b8696891fc0b 100644 --- a/svx/source/dialog/svxruler.cxx +++ b/svx/source/dialog/svxruler.cxx @@ -2541,7 +2541,7 @@ void SvxRuler::EvalModifier() void SvxRuler::Click() { - /* Overloaded handler SV; sets Tab per dispatcher call */ + /* Override handler SV; sets Tab per dispatcher call */ Ruler::Click(); if( bActive ) { @@ -2595,7 +2595,7 @@ bool SvxRuler::CalcLimits ( long& nMax1, // minimum value to be set { /* Default implementation of the virtual function; the application can be - overloaded to implement customized limits. The values are based on the page. + overridden to implement customized limits. The values are based on the page. */ nMax1 = LONG_MIN; nMax2 = LONG_MAX; @@ -3346,7 +3346,7 @@ void SvxRuler::EndDrag() void SvxRuler::ExtraDown() { - /* Overloaded SV method, sets the new type for the Default tab. */ + /* Override SV method, sets the new type for the Default tab. */ // Switch Tab Type if(mpTabStopItem.get() && |