parent
f3db7f00d6
commit
bdb56ecf9b
7 changed files with 69 additions and 3 deletions
@ -0,0 +1,13 @@ |
||||
/*
|
||||
localegeneratorgeneratedglibc.cpp |
||||
SPDX-FileCopyrightText: 2022 Han Young <hanyoung@protonmail.com> |
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later |
||||
*/ |
||||
#include "localegeneratorgeneratedglibc.h" |
||||
|
||||
void LocaleGeneratorGeneratedGlibc::localesGenerate(const QStringList &list) |
||||
{ |
||||
Q_UNUSED(list) |
||||
Q_EMIT needsFont(); |
||||
} |
||||
@ -0,0 +1,17 @@ |
||||
/*
|
||||
localegeneratorgeneratedglibc.h |
||||
SPDX-FileCopyrightText: 2022 Han Young <hanyoung@protonmail.com> |
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later |
||||
*/ |
||||
|
||||
#pragma once |
||||
#include "localegeneratorbase.h" |
||||
|
||||
class LocaleGeneratorGeneratedGlibc : public LocaleGeneratorBase |
||||
{ |
||||
Q_OBJECT |
||||
public: |
||||
using LocaleGeneratorBase::LocaleGeneratorBase; |
||||
void localesGenerate(const QStringList &list) override; |
||||
}; |
||||
Loading…
Reference in new issue