Change documentation for callbacks to use Callable[]

This commit is contained in:
baldurk
2026-08-13 17:46:38 +01:00
parent 7567cc11c9
commit a23ee5f526
8 changed files with 77 additions and 65 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ MiniQtHelper::~MiniQtHelper()
});
}
void MiniQtHelper::InvokeOntoUIThread(std::function<void()> callback)
void MiniQtHelper::InvokeOntoUIThread(UIInvokeCallback callback)
{
GUIInvoke::call(m_Ctx.GetMainWindow()->Widget(), callback);
}