Fix minor error

This commit is contained in:
Simon Walton 2018-05-31 18:39:25 -07:00
parent 7d1d7f7bcd
commit c277cc7574

View file

@ -434,7 +434,7 @@ bool TabletProxy::isMessageDialogOpen() {
void TabletProxy::closeDialog() { void TabletProxy::closeDialog() {
if (QThread::currentThread() != thread()) { if (QThread::currentThread() != thread()) {
bool result = false; bool result = false;
QMetaObject::invokeMethod(this, "isMessageDialogOpen"); QMetaObject::invokeMethod(this, "closeDialog");
return; return;
} }