diff options
author | Andras Timar <andras.timar@collabora.com> | 2018-11-06 11:28:52 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2018-11-06 14:31:44 +0100 |
commit | d186ed09bcabe36f70e8a58b4f0b1c05c3c72218 (patch) | |
tree | 9dd5227bf638e2fba37d4d070160223d470f386b /svx/source/fmcomp | |
parent | 4d9dda3fd096b9bffba5a07243a86208affd893f (diff) |
replace Application::GetMainThreadIdentifier to Application::IsMainThread
Change-Id: I2b9ea77b48673af3575a3142feea5bed84f75d74
Reviewed-on: https://gerrit.libreoffice.org/62950
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/gridctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index 29664c00d673..325d2b2957ef 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -3423,7 +3423,7 @@ void DbGridControl::implAdjustInSolarThread(bool _bRows) { SAL_INFO("svx.fmcomp", "DbGridControl::implAdjustInSolarThread"); ::osl::MutexGuard aGuard(m_aAdjustSafety); - if (::osl::Thread::getCurrentIdentifier() != Application::GetMainThreadIdentifier()) + if (!Application::IsMainThread()) { m_nAsynAdjustEvent = PostUserEvent(LINK(this, DbGridControl, OnAsyncAdjust), reinterpret_cast< void* >( _bRows ), true); m_bPendingAdjustRows = _bRows; |