diff options
author | Mathieu Vonlanthen <mat_von@fastmail.fm> | 2012-07-19 11:02:45 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-07-23 15:12:44 +0100 |
commit | 0f6101cfef4c2e45d9f1f1b3a61ef94799e4526b (patch) | |
tree | 5b545b1e2a221f5a1b3d36acc3298bcb2f3649f8 /svtools | |
parent | 65e2c77e762a667b965ab3dc2bcaf8b8d1a0bc91 (diff) |
fdo#48549 System::Beep() removal
Change-Id: I8fe133dd8d1f759fbe21d47ae358c0b5451812b5
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 3 | ||||
-rw-r--r-- | svtools/source/contnr/svlbitm.cxx | 2 | ||||
-rw-r--r-- | svtools/source/contnr/svtreebx.cxx | 1 | ||||
-rw-r--r-- | svtools/source/edit/textview.cxx | 5 |
4 files changed, 0 insertions, 11 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index 7b3eb3c79939..d0b95b1ec42d 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -1143,9 +1143,6 @@ void ViewTabListBox_Impl::DoQuickSearch( const xub_Unicode& rChar ) bFound = sal_False; } - if ( !bFound ) - Sound::Beep(); - maResetQuickSearch.Start(); } diff --git a/svtools/source/contnr/svlbitm.cxx b/svtools/source/contnr/svlbitm.cxx index 7826d9c621e9..eff3939a9062 100644 --- a/svtools/source/contnr/svlbitm.cxx +++ b/svtools/source/contnr/svlbitm.cxx @@ -461,8 +461,6 @@ void SvLBoxButton::InitViewData( SvLBox* pView,SvLBoxEntry* pEntry, bool SvLBoxButton::CheckModification() const { - if( eKind == SvLBoxButtonKind_disabledCheckbox ) - Sound::Beep(); return eKind == SvLBoxButtonKind_enabledCheckbox; } diff --git a/svtools/source/contnr/svtreebx.cxx b/svtools/source/contnr/svtreebx.cxx index 9cb396631060..ec7d135998b3 100644 --- a/svtools/source/contnr/svtreebx.cxx +++ b/svtools/source/contnr/svtreebx.cxx @@ -742,7 +742,6 @@ void SvTreeListBox::KeyInput( const KeyEvent& rKEvt ) SvLBoxEntry* pEntry = First(); pEntry = NextVisible( pEntry ); SetEntryText( pEntry, "SetEntryText" ); - Sound::Beep(); } break; } diff --git a/svtools/source/edit/textview.cxx b/svtools/source/edit/textview.cxx index 289a844ba593..e03ef2e4b82f 100644 --- a/svtools/source/edit/textview.cxx +++ b/svtools/source/edit/textview.cxx @@ -2009,12 +2009,7 @@ sal_Bool TextView::ImplCheckTextLen( const String& rNewText ) // nur dann noch ermitteln, wie viel Text geloescht wird n -= mpImpl->mpTextEngine->GetTextLen( mpImpl->maSelection ); if ( n > mpImpl->mpTextEngine->GetMaxTextLen() ) - { - // Beep hat hier eigentlich nichts verloren, sondern lieber ein Hdl, - // aber so funktioniert es wenigstens in ME, BasicIDE, SourceView - Sound::Beep(); bOK = sal_False; - } } } return bOK; |