cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
31 lines
576 B
C++
31 lines
576 B
C++
/*
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
#ifndef KCONFIG_AUTOTESTS_HELPER_H
|
|
#define KCONFIG_AUTOTESTS_HELPER_H
|
|
|
|
#include <QLocale>
|
|
|
|
/**
|
|
* @brief Helper to store the current default QLocale and resetting to it in the dtor.
|
|
**/
|
|
class DefaultLocale
|
|
{
|
|
public:
|
|
DefaultLocale()
|
|
: m_defaultLocale()
|
|
{
|
|
}
|
|
~DefaultLocale()
|
|
{
|
|
QLocale::setDefault(m_defaultLocale);
|
|
}
|
|
|
|
private:
|
|
QLocale m_defaultLocale;
|
|
};
|
|
|
|
#endif
|