aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmljsscope/QQmlJSScopeTests/singleton.cpp
blob: 280ff6163e6ca32b1bf31d42e2d9f7f9c8620b9c (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 WITH Qt-GPL-exception-1.0

#include "singleton.h"

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