mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Qt/RunOnObject: Fix no result being returned
This commit is contained in:
parent
0979febe78
commit
1f3df1811b
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ auto RunOnObject(QObject* object, F&& functor)
|
||||||
{
|
{
|
||||||
if (m_obj)
|
if (m_obj)
|
||||||
{
|
{
|
||||||
(*m_result) = m_func();
|
m_result = m_func();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue