aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmljsscope/QQmlJSScopeTests/singleton.cpp
blob: 56efc324d352a6bde8cd2d8c575be51eb422b2c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "singleton.h"

QFont TestApplication::createDummyFont() const
{
    QFont font;
    font.setPixelSize(42);
    return font;
}