diff options
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/app/officeipcthread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx index 33455d26725d..274a822fcc30 100644 --- a/desktop/source/app/officeipcthread.cxx +++ b/desktop/source/app/officeipcthread.cxx @@ -730,7 +730,7 @@ RequestHandler::Status RequestHandler::Enable(bool ipc) assert(thread.is() == (stat == IPC_STATUS_OK)); if (stat == IPC_STATUS_OK) { pGlobal = new RequestHandler; - pGlobal->mIpcThread = thread; + pGlobal->mIpcThread = std::move(thread); pGlobal->mIpcThread->start(pGlobal.get()); } return stat; |