diff options
author | Ryan McCoskrie <ryan.mccoskrie@gmail.com> | 2015-09-10 10:17:35 +1200 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-10-30 20:07:19 +0000 |
commit | d77af785f962efa6f783a5106671d608c313f853 (patch) | |
tree | 0d0eac4cf047113f152dd6f2c450992c34f4fa54 | |
parent | a461ab5fd60068202189a2f426490b95b68efa3c (diff) |
tdf#93684 - Remove SalFrame::Sync
Change-Id: Icae9cf0a17f9cdf9a671c7e7278019d6980602b1
Reviewed-on: https://gerrit.libreoffice.org/18453
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: jan iversen <jani@documentfoundation.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Michael Meeks <michael.meeks@collabora.com>
-rw-r--r-- | canvas/source/vcl/spritecanvashelper.cxx | 2 | ||||
-rw-r--r-- | cui/source/dialogs/cuigaldlg.cxx | 6 | ||||
-rw-r--r-- | include/vcl/window.hxx | 1 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/optsolver.cxx | 2 | ||||
-rw-r--r-- | vcl/headless/svpframe.cxx | 4 | ||||
-rw-r--r-- | vcl/inc/headless/svpframe.hxx | 1 | ||||
-rw-r--r-- | vcl/inc/osx/salframe.h | 1 | ||||
-rw-r--r-- | vcl/inc/salframe.hxx | 2 | ||||
-rw-r--r-- | vcl/inc/unx/gtk/gtkframe.hxx | 1 | ||||
-rw-r--r-- | vcl/inc/unx/salframe.h | 1 | ||||
-rw-r--r-- | vcl/inc/win/salframe.h | 1 | ||||
-rw-r--r-- | vcl/osx/salframe.cxx | 12 | ||||
-rw-r--r-- | vcl/source/gdi/impanmvw.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/window.cxx | 6 | ||||
-rw-r--r-- | vcl/unx/generic/window/salframe.cxx | 5 | ||||
-rw-r--r-- | vcl/unx/gtk/window/gtkobject.cxx | 2 | ||||
-rw-r--r-- | vcl/unx/gtk/window/gtksalframe.cxx | 5 | ||||
-rw-r--r-- | vcl/win/source/window/salframe.cxx | 5 | ||||
-rw-r--r-- | vcl/workben/outdevgrind.cxx | 2 |
19 files changed, 7 insertions, 54 deletions
diff --git a/canvas/source/vcl/spritecanvashelper.cxx b/canvas/source/vcl/spritecanvashelper.cxx index 68a2c68de93a..02c9fe40558f 100644 --- a/canvas/source/vcl/spritecanvashelper.cxx +++ b/canvas/source/vcl/spritecanvashelper.cxx @@ -305,7 +305,7 @@ namespace vclcanvas if( pTargetWindow ) { // commit to screen - pTargetWindow->Sync(); + pTargetWindow->Flush(); } return true; diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index 000a96236de8..a42c00eceb64 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -123,7 +123,7 @@ void SearchThread::ImplSearch( const INetURLObject& rStartURL, SolarMutexGuard aGuard; mpProgress->SetDirectory( rStartURL ); - mpProgress->Sync(); + mpProgress->Flush(); } try @@ -325,7 +325,7 @@ void TakeThread::execute() mpProgress->SetFile( aURL ); pStatusProgress->Update( i, nEntries - 1 ); - mpProgress->Sync(); + mpProgress->Flush(); pThm->InsertURL( aURL ); } } @@ -517,11 +517,9 @@ IMPL_LINK_TYPED( ActualizeProgress, ActualizeHdl, const INetURLObject&, rURL, vo Application::Reschedule(); Flush(); - Sync(); m_pFtActualizeFile->SetText( GetReducedString( rURL, 30 ) ); m_pFtActualizeFile->Flush(); - m_pFtActualizeFile->Sync(); } TitleDialog::TitleDialog(vcl::Window* pParent, const OUString& rOldTitle) diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 7a7d0a273d2d..fd62a8a17f70 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -1131,7 +1131,6 @@ public: bool HasPaintEvent() const; void Update(); void Flush(); - void Sync(); // toggles new docking support, enabled via toolkit void EnableDocking( bool bEnable = true ); diff --git a/sc/source/ui/miscdlgs/optsolver.cxx b/sc/source/ui/miscdlgs/optsolver.cxx index 01a7d5e3750c..cd18e0a1911b 100644 --- a/sc/source/ui/miscdlgs/optsolver.cxx +++ b/sc/source/ui/miscdlgs/optsolver.cxx @@ -849,7 +849,7 @@ bool ScOptSolverDlg::CallSolver() // return true -> close dialog after cal aProgress->HideTimeLimit(); aProgress->Show(); aProgress->Update(); - aProgress->Sync(); + aProgress->Flush(); // try to make sure the progress dialog is painted before continuing Application::Reschedule(true); diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx index eeed1fcf202f..f3f2ccef41f8 100644 --- a/vcl/headless/svpframe.cxx +++ b/vcl/headless/svpframe.cxx @@ -413,10 +413,6 @@ void SvpSalFrame::Flush() { } -void SvpSalFrame::Sync() -{ -} - void SvpSalFrame::SetInputContext( SalInputContext* ) { } diff --git a/vcl/inc/headless/svpframe.hxx b/vcl/inc/headless/svpframe.hxx index f64d22f7c303..dbe7d916742e 100644 --- a/vcl/inc/headless/svpframe.hxx +++ b/vcl/inc/headless/svpframe.hxx @@ -106,7 +106,6 @@ public: virtual void SetPointerPos( long nX, long nY ) override; using SalFrame::Flush; virtual void Flush() override; - virtual void Sync() override; virtual void SetInputContext( SalInputContext* pContext ) override; virtual void EndExtTextInput( EndExtTextInputFlags nFlags ) override; virtual OUString GetKeyName( sal_uInt16 nKeyCode ) override; diff --git a/vcl/inc/osx/salframe.h b/vcl/inc/osx/salframe.h index 4e483f8defc1..1c0d8b7a56b7 100644 --- a/vcl/inc/osx/salframe.h +++ b/vcl/inc/osx/salframe.h @@ -132,7 +132,6 @@ public: virtual void SetPointerPos( long nX, long nY ) override; virtual void Flush( void ) override; virtual void Flush( const Rectangle& ) override; - virtual void Sync() override; virtual void SetInputContext( SalInputContext* pContext ) override; virtual void EndExtTextInput( EndExtTextInputFlags nFlags ) override; virtual OUString GetKeyName( sal_uInt16 nKeyCode ) override; diff --git a/vcl/inc/salframe.hxx b/vcl/inc/salframe.hxx index 0b781ef3aa39..14fb2fa3095e 100644 --- a/vcl/inc/salframe.hxx +++ b/vcl/inc/salframe.hxx @@ -181,8 +181,6 @@ public: // flush output buffer virtual void Flush() = 0; virtual void Flush( const Rectangle& ); - // flush output buffer, wait till outstanding operations are done - virtual void Sync() = 0; virtual void SetInputContext( SalInputContext* pContext ) = 0; virtual void EndExtTextInput( EndExtTextInputFlags nFlags ) = 0; diff --git a/vcl/inc/unx/gtk/gtkframe.hxx b/vcl/inc/unx/gtk/gtkframe.hxx index 4f73ac8fc2d0..41cd6aafc5e0 100644 --- a/vcl/inc/unx/gtk/gtkframe.hxx +++ b/vcl/inc/unx/gtk/gtkframe.hxx @@ -410,7 +410,6 @@ public: using SalFrame::Flush; virtual void Flush() override; // flush output buffer, wait till outstanding operations are done - virtual void Sync() override; virtual void SetInputContext( SalInputContext* pContext ) override; virtual void EndExtTextInput( EndExtTextInputFlags nFlags ) override; diff --git a/vcl/inc/unx/salframe.h b/vcl/inc/unx/salframe.h index d595c441bd26..fc8f0d3563d4 100644 --- a/vcl/inc/unx/salframe.h +++ b/vcl/inc/unx/salframe.h @@ -234,7 +234,6 @@ public: virtual void SetPointerPos( long nX, long nY ) override; using SalFrame::Flush; virtual void Flush() override; - virtual void Sync() override; virtual void SetInputContext( SalInputContext* pContext ) override; virtual void EndExtTextInput( EndExtTextInputFlags nFlags ) override; virtual OUString GetKeyName( sal_uInt16 nKeyCode ) override; diff --git a/vcl/inc/win/salframe.h b/vcl/inc/win/salframe.h index 27fa46e5c3fb..600946f4b878 100644 --- a/vcl/inc/win/salframe.h +++ b/vcl/inc/win/salframe.h @@ -113,7 +113,6 @@ public: virtual void SetPointerPos( long nX, long nY ) override; using SalFrame::Flush; virtual void Flush() override; - virtual void Sync() override; virtual void SetInputContext( SalInputContext* pContext ) override; virtual void EndExtTextInput( EndExtTextInputFlags nFlags ) override; virtual OUString GetKeyName( sal_uInt16 nKeyCode ) override; diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx index c4f03195d72f..1ce314ee2b85 100644 --- a/vcl/osx/salframe.cxx +++ b/vcl/osx/salframe.cxx @@ -904,18 +904,6 @@ void AquaSalFrame::Flush( const Rectangle& rRect ) } } -void AquaSalFrame::Sync() -{ - if( mbGraphics && mpGraphics && mpNSView && mbShown ) - { - // #i113170# may not be the main thread if called from UNO API - SalData::ensureThreadAutoreleasePool(); - - [mpNSView setNeedsDisplay: YES]; - [mpNSView display]; - } -} - void AquaSalFrame::SetInputContext( SalInputContext* pContext ) { if (!pContext) diff --git a/vcl/source/gdi/impanmvw.cxx b/vcl/source/gdi/impanmvw.cxx index 2b28b3cc97ff..65c321685b54 100644 --- a/vcl/source/gdi/impanmvw.cxx +++ b/vcl/source/gdi/impanmvw.cxx @@ -301,7 +301,7 @@ void ImplAnimView::draw( sal_uLong nPos, VirtualDevice* pVDev ) pDev.disposeAndClear(); if( pRenderContext->GetOutDevType() == OUTDEV_WINDOW ) - static_cast<vcl::Window*>( pRenderContext.get() )->Sync(); + static_cast<vcl::Window*>( pRenderContext.get() )->Flush(); } } } diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index f44f1a2c03b1..97a29915da9d 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -3156,12 +3156,6 @@ void Window::Flush() mpWindowImpl->mpFrame->Flush( aWinRect ); } -void Window::Sync() -{ - - mpWindowImpl->mpFrame->Sync(); -} - void Window::SetUpdateMode( bool bUpdate ) { mpWindowImpl->mbNoUpdate = !bUpdate; diff --git a/vcl/unx/generic/window/salframe.cxx b/vcl/unx/generic/window/salframe.cxx index 4be20a723b8b..0b55e286acb5 100644 --- a/vcl/unx/generic/window/salframe.cxx +++ b/vcl/unx/generic/window/salframe.cxx @@ -2289,11 +2289,6 @@ void X11SalFrame::Flush() XFlush( GetDisplay()->GetDisplay() ); } -void X11SalFrame::Sync() -{ - XSync( GetDisplay()->GetDisplay(), False ); -} - // Keyboard void X11SalFrame::SetInputContext( SalInputContext* pContext ) diff --git a/vcl/unx/gtk/window/gtkobject.cxx b/vcl/unx/gtk/window/gtkobject.cxx index 3de060bdc843..463c3c1ff486 100644 --- a/vcl/unx/gtk/window/gtkobject.cxx +++ b/vcl/unx/gtk/window/gtkobject.cxx @@ -78,7 +78,7 @@ GtkSalObject::GtkSalObject( GtkSalFrame* pParent, bool bShow ) g_signal_connect( G_OBJECT(m_pSocket), "destroy", G_CALLBACK(signalDestroy), this ); // #i59255# necessary due to sync effects with java child windows - pParent->Sync(); + pParent->Flush(); } } diff --git a/vcl/unx/gtk/window/gtksalframe.cxx b/vcl/unx/gtk/window/gtksalframe.cxx index 95a33f0db29b..3e0749fd0d0d 100644 --- a/vcl/unx/gtk/window/gtksalframe.cxx +++ b/vcl/unx/gtk/window/gtksalframe.cxx @@ -2642,11 +2642,6 @@ void GtkSalFrame::Flush() #endif } -void GtkSalFrame::Sync() -{ - gdk_display_sync( getGdkDisplay() ); -} - #ifndef GDK_Open #define GDK_Open 0x1008ff6b #endif diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx index 634d5fd1fe43..0203b05232b3 100644 --- a/vcl/win/source/window/salframe.cxx +++ b/vcl/win/source/window/salframe.cxx @@ -2205,11 +2205,6 @@ void WinSalFrame::Flush() GdiFlush(); } -void WinSalFrame::Sync() -{ - GdiFlush(); -} - static void ImplSalFrameSetInputContext( HWND hWnd, const SalInputContext* pContext ) { WinSalFrame* pFrame = GetWindowPtr( hWnd ); diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx index e41f7a2f3eab..6326a77c50ee 100644 --- a/vcl/workben/outdevgrind.cxx +++ b/vcl/workben/outdevgrind.cxx @@ -752,7 +752,7 @@ void grindFunc( OutputDevice& rTarget, iter->second(&rTarget); if( rTarget.GetOutDevType() == OUTDEV_WINDOW ) - static_cast< vcl::Window & >( rTarget ).Sync(); + static_cast< vcl::Window & >( rTarget ).Flush(); fprintf( stdout, "Duration: %d ms (%d repetitions)\tOperation: %s\tSetup: %s\n", |