build fixes
# Conflicts: # pglablib/sqlast/SelectList.h
This commit is contained in:
parent
2ad5fa5e4e
commit
a7d4a5f13d
7 changed files with 11 additions and 9 deletions
|
|
@ -269,7 +269,7 @@ void ASyncDBConnectionThread::doStateCallback(ASyncDBConnection::State state)
|
|||
// if (m_stateCallback.m_func) {
|
||||
// m_stateCallback.m_func(state);
|
||||
// }
|
||||
emit asyncConnObject->onStateChanged(state);
|
||||
Q_EMIT asyncConnObject->onStateChanged(state);
|
||||
}
|
||||
|
||||
void ASyncDBConnectionThread::waitForAndSendCommand()
|
||||
|
|
@ -439,7 +439,7 @@ void ASyncDBConnectionThread::processNotice(const PGresult *result)
|
|||
// m_noticeCallback.m_func(details);
|
||||
// }
|
||||
Pgsql::ErrorDetails details = Pgsql::ErrorDetails::createErrorDetailsFromPGresult(result);
|
||||
emit asyncConnObject->onNotice(details);
|
||||
Q_EMIT asyncConnObject->onNotice(details);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -480,7 +480,7 @@ void ASyncDBConnection::doStateCallback(State state)
|
|||
m_connection.setNoticeReceiver(
|
||||
[this](const PGresult *result) { processNotice(result); });
|
||||
}
|
||||
emit onStateChanged(state);
|
||||
Q_EMIT onStateChanged(state);
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -526,5 +526,5 @@ bool ASyncDBConnection::cancel()
|
|||
void ASyncDBConnection::processNotice(const PGresult *result)
|
||||
{
|
||||
Pgsql::ErrorDetails details = Pgsql::ErrorDetails::createErrorDetailsFromPGresult(result);
|
||||
emit onNotice(details);
|
||||
Q_EMIT onNotice(details);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue