Kaydet (Commit) 728ee383 authored tarafından Michael Weghorn's avatar Michael Weghorn

tdf#124652 Guard Gtk3KDE5FolderPicker::execute with SolarMutexGuard

S.a. commit 8dbe0af7 which already
did the same for Gtk3KDE5FilePicker.

Change-Id: I35f837b7b8fdaebc5625ff8ea5e20b3f48a3b4ec
Reviewed-on: https://gerrit.libreoffice.org/70519
Tested-by: Jenkins
Reviewed-by: 's avatarMichael Weghorn <m.weghorn@posteo.de>
üst 14abbc6e
...@@ -76,7 +76,11 @@ void SAL_CALL Gtk3KDE5FolderPicker::setTitle(const OUString& aTitle) ...@@ -76,7 +76,11 @@ void SAL_CALL Gtk3KDE5FolderPicker::setTitle(const OUString& aTitle)
m_ipc.sendCommand(Commands::SetTitle, aTitle); m_ipc.sendCommand(Commands::SetTitle, aTitle);
} }
sal_Int16 SAL_CALL Gtk3KDE5FolderPicker::execute() { return m_ipc.execute(); } sal_Int16 SAL_CALL Gtk3KDE5FolderPicker::execute()
{
SolarMutexGuard g;
return m_ipc.execute();
}
// XCancellable // XCancellable
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment