From d186ed09bcabe36f70e8a58b4f0b1c05c3c72218 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Tue, 6 Nov 2018 11:28:52 +0100 Subject: replace Application::GetMainThreadIdentifier to Application::IsMainThread Change-Id: I2b9ea77b48673af3575a3142feea5bed84f75d74 Reviewed-on: https://gerrit.libreoffice.org/62950 Reviewed-by: Michael Meeks Tested-by: Jenkins --- vcl/unx/generic/app/saldata.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl/unx/generic') diff --git a/vcl/unx/generic/app/saldata.cxx b/vcl/unx/generic/app/saldata.cxx index 8141da534a57..decdaa50177e 100644 --- a/vcl/unx/generic/app/saldata.cxx +++ b/vcl/unx/generic/app/saldata.cxx @@ -82,7 +82,7 @@ static int XErrorHdl( Display *pDisplay, XErrorEvent *pEvent ) static int XIOErrorHdl( Display * ) { - if (::osl::Thread::getCurrentIdentifier() == Application::GetMainThreadIdentifier()) + if ( Application::IsMainThread() ) { /* #106197# hack: until a real shutdown procedure exists * _exit ASAP -- cgit