Kaydet (Commit) 19ddbc1f authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix --enable-gtk3-kde5 build

...after 639df4d7 "use more std::make_unique"

Change-Id: Iae8c84d33b36c9bc9208d0edcbff50bed9abca77
üst 481a1257
......@@ -214,7 +214,7 @@ FilePickerIpc::FilePickerIpc(KDE5FilePicker* filePicker, QObject* parent)
// read IPC commands and their args in a separate thread, so this does not block everything else;
// 'commandReceived' signal is emitted every time a command and its args have been read;
// thread will run until the filepicker process is terminated
m_ipcReaderThread = std::make_unique<std::thread>{ readCommands, this };
m_ipcReaderThread = std::make_unique<std::thread>(readCommands, this);
}
FilePickerIpc::~FilePickerIpc()
......
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