summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-07-10 10:36:03 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-07-10 10:36:43 +0100
commit5c2564b8a7fafbc6f1c002d1fd42e1bc7cd1ab10 (patch)
treee53cda0676e2d3d004b52a1c0276c36dfb8259c6 /vcl/source
parent137e4bd885a913cb201d92dfc7815b2821986d49 (diff)
Remove an un-used mode on Application::Yield.
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/app/svapp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 0e4d763f0313..d8d193d04cb2 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 );
}
// -----------------------------------------------------------------------