summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-31 23:52:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-31 23:52:16 +0100
commit51eb081f6d9113be975270435f8f4f8e73e5a5c9 (patch)
tree78098b1b2dbe22cd6d356cd6d7248518d504af0c
parent418a853461a6a059468b87e10af852b57bc50d49 (diff)
callcatcher: remove unused code
-rw-r--r--dbaccess/source/ui/browser/brwctrlr.cxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx b/dbaccess/source/ui/browser/brwctrlr.cxx
index fab11234a..f66f5b5ce 100644
--- a/dbaccess/source/ui/browser/brwctrlr.cxx
+++ b/dbaccess/source/ui/browser/brwctrlr.cxx
@@ -2872,13 +2872,6 @@ public:
// ::com::sun::star::lang::XEventListener
virtual void SAL_CALL disposing(const ::com::sun::star::lang::EventObject& Source) throw( RuntimeException );
-
- bool WaitUntilReallyLoaded(bool _bOnlyIfLoaded);
- // waits 'til the first positioned event after the loaded event. returns true if successfull,
- // false if the form was disposed or unloaded before or while waiting
- // if _bOnlyIfLoaded is false and the form isn't loaded already loaded, false will be returned
- // (without any wating)
-
void cancel();
protected:
@@ -2984,33 +2977,6 @@ void LoadFormHelper::cancel()
implDispose();
}
-//------------------------------------------------------------------------------
-bool LoadFormHelper::WaitUntilReallyLoaded(bool _bOnlyIfLoaded)
-{
- ::osl::ResettableMutexGuard aGuard( m_aAccessSafety );
- if (DISPOSED == m_eState)
- return false;
-
- if (_bOnlyIfLoaded && (STARTED == m_eState))
- // we did't get a "loaded" event ....
- return false;
-
- sal_Bool bDone = (POSITIONED == m_eState);
- aGuard.clear();
-
- while (!bDone)
- {
- aGuard.reset();
- bDone = (POSITIONED == m_eState);
- aGuard.clear();
- }
-
- aGuard.reset();
- implDispose();
-
- return true;
-}
-
// -----------------------------------------------------------------------------
sal_Int16 SbaXDataBrowserController::getCurrentColumnPosition()
{