mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
255325e219
This is not hooked into anything - It's the bare minimum that I need to continue creating the new preferences dialog. But take a look at it... very simple. :) Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
21 lines
No EOL
399 B
C++
21 lines
No EOL
399 B
C++
#ifndef PREFERENCES_LANGUAGE_H
|
|
#define PREFERENCES_LANGUAGE_H
|
|
|
|
#include "abstractpreferenceswidget.h"
|
|
|
|
namespace Ui {
|
|
class PreferencesLanguage;
|
|
}
|
|
|
|
class PreferencesLanguage : public AbstractPreferencesWidget {
|
|
Q_OBJECT
|
|
public:
|
|
PreferencesLanguage();
|
|
virtual ~PreferencesLanguage();
|
|
virtual void refreshSettings();
|
|
virtual void syncSettings();
|
|
private:
|
|
Ui::PreferencesLanguage *ui;
|
|
};
|
|
|
|
#endif |