diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-09-25 17:07:04 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-30 10:36:50 -0700 |
commit | 57d7b59bdc62a5b01fa420bc420dbdcf1414a23a (patch) | |
tree | 779d151e52950f882713fd17ab93042639dd7f5d /desktop-widgets/preferences/preferences_units.h | |
parent | c53615315e151a2790218c13898f128d561df1b9 (diff) | |
download | subsurface-57d7b59bdc62a5b01fa420bc420dbdcf1414a23a.tar.gz |
Preferences: move units to the new dialog
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/preferences/preferences_units.h')
-rw-r--r-- | desktop-widgets/preferences/preferences_units.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_units.h b/desktop-widgets/preferences/preferences_units.h new file mode 100644 index 000000000..21a7f4404 --- /dev/null +++ b/desktop-widgets/preferences/preferences_units.h @@ -0,0 +1,21 @@ +#ifndef PREFERENCES_UNITS_H +#define PREFERENCES_UNITS_H + +#include "abstractpreferenceswidget.h" + +namespace Ui { + class PreferencesUnits; +} + +class PreferencesUnits : public AbstractPreferencesWidget { + Q_OBJECT +public: + PreferencesUnits(); + virtual ~PreferencesUnits(); + virtual void refreshSettings(); + virtual void syncSettings(); +private: + Ui::PreferencesUnits *ui; +}; + +#endif
\ No newline at end of file |