include/vcl/svapp.hxx | 2 +- vcl/source/app/svapp.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit 5c2564b8a7fafbc6f1c002d1fd42e1bc7cd1ab10 Author: Michael Meeks <michael.me...@suse.com> Date: Wed Jul 10 10:36:03 2013 +0100 Remove an un-used mode on Application::Yield. diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index 67a48ee..20a8b74 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -153,7 +153,7 @@ public: static void Execute(); static void Quit(); static void Reschedule( bool bAllEvents = false ); - static void Yield( bool bAllEvents = false ); + static void Yield(); static void EndYield(); static comphelper::SolarMutex& GetSolarMutex(); static oslThreadIdentifier GetMainThreadIdentifier(); diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index 0e4d763..d8d193d 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -446,9 +446,9 @@ void Application::Reschedule( bool i_bAllEvents ) // ----------------------------------------------------------------------- -void Application::Yield( bool i_bAllEvents ) +void Application::Yield() { - ImplYield( true, i_bAllEvents ); + ImplYield( true, false ); } // ----------------------------------------------------------------------- _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits