mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 14:05:13 +01:00
d87961bad3
Resolves trivial compiler warnings.
34 lines
615 B
C++
34 lines
615 B
C++
// Copyright 2018 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class ConfigureUi;
|
|
}
|
|
|
|
class ConfigureUi : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureUi(QWidget* parent = nullptr);
|
|
~ConfigureUi() override;
|
|
|
|
void applyConfiguration();
|
|
void retranslateUi();
|
|
void setConfiguration();
|
|
|
|
private slots:
|
|
void onLanguageChanged(int index);
|
|
|
|
signals:
|
|
void languageChanged(const QString& locale);
|
|
|
|
private:
|
|
std::unique_ptr<Ui::ConfigureUi> ui;
|
|
};
|