Fix build break due to incomplete changes
This commit is contained in:
parent
d827e43a11
commit
ed7bb8bd69
@ -100,7 +100,7 @@ void NoMsgHandler(QtMsgType type, const QMessageLogContext &/*context*/,
|
|||||||
const QString &msg)
|
const QString &msg)
|
||||||
{
|
{
|
||||||
if (type == QtFatalMsg) {
|
if (type == QtFatalMsg) {
|
||||||
fprintf(stderr, qPrintable(msg));
|
fprintf(stderr, "%s\n", qPrintable(msg));
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
@ -112,7 +112,7 @@ void StreamBase::protoDataCopyFrom(const OstProto::Stream &stream)
|
|||||||
while (iter->hasNext())
|
while (iter->hasNext())
|
||||||
{
|
{
|
||||||
AbstractProtocol *p = iter->next();
|
AbstractProtocol *p = iter->next();
|
||||||
p->toBeNamed();
|
p->updateCacheability();
|
||||||
}
|
}
|
||||||
|
|
||||||
delete iter;
|
delete iter;
|
||||||
|
@ -116,7 +116,7 @@ void NoMsgHandler(QtMsgType type, const QMessageLogContext &/*context*/,
|
|||||||
const QString &msg)
|
const QString &msg)
|
||||||
{
|
{
|
||||||
if (type == QtFatalMsg) {
|
if (type == QtFatalMsg) {
|
||||||
fprintf(stderr, qPrintable(msg));
|
fprintf(stderr, "%s\n", qPrintable(msg));
|
||||||
fflush(stderr);
|
fflush(stderr);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user