blob: 36e6eb1d63fbe753529701fc54092c1c661bfb74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "evalhandler.h"
void EvalHandler::message(int type, const QString &msg, const QString &fileName, int lineNo)
{
Q_UNUSED(type);
Q_UNUSED(msg);
Q_UNUSED(fileName);
Q_UNUSED(lineNo);
}
void EvalHandler::fileMessage(const QString &msg)
{
Q_UNUSED(msg);
}
void EvalHandler::aboutToEval(ProFile *parent, ProFile *proFile, EvalFileType type)
{
Q_UNUSED(parent);
Q_UNUSED(proFile);
Q_UNUSED(type);
}
void EvalHandler::doneWithEval(ProFile *parent)
{
Q_UNUSED(parent);
}
|