summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/settingstabwidget.h
Unidiff
Diffstat (limited to 'noncore/settings/netsystemtime/settingstabwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/netsystemtime/settingstabwidget.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/settings/netsystemtime/settingstabwidget.h b/noncore/settings/netsystemtime/settingstabwidget.h
index 9578245..17e7989 100644
--- a/noncore/settings/netsystemtime/settingstabwidget.h
+++ b/noncore/settings/netsystemtime/settingstabwidget.h
@@ -31,34 +31,35 @@
31#ifndef SETTINGSTABWIDGET_H 31#ifndef SETTINGSTABWIDGET_H
32#define SETTINGSTABWIDGET_H 32#define SETTINGSTABWIDGET_H
33 33
34#include <qwidget.h> 34#include <qwidget.h>
35 35
36class QCheckBox; 36class QCheckBox;
37class QComboBox; 37class QComboBox;
38class QSpinBox; 38class QSpinBox;
39 39
40class SettingsTabWidget : public QWidget 40class SettingsTabWidget : public QWidget
41{ 41{
42 Q_OBJECT 42 Q_OBJECT
43 43
44public: 44public:
45 SettingsTabWidget( QWidget * = 0x0 ); 45 SettingsTabWidget( QWidget * = 0x0 );
46 ~SettingsTabWidget(); 46 ~SettingsTabWidget();
47 47
48 void saveSettings(); 48 void saveSettings();
49 QString ntpServer(); 49 QString ntpServer();
50 50
51private: 51private:
52 QComboBox *cbTimeServer; 52 QComboBox *cbTimeServer;
53 QSpinBox *sbNtpDelay; 53 QSpinBox *sbNtpDelay;
54 QSpinBox *sbPredictDelay; 54 QSpinBox *sbPredictDelay;
55 QCheckBox *chShowOnRestart;
55 QCheckBox *chNtpTab; 56 QCheckBox *chNtpTab;
56 QCheckBox *chPredictTab; 57 QCheckBox *chPredictTab;
57 58
58signals: 59signals:
59 void ntpDelayChanged( int ); 60 void ntpDelayChanged( int );
60 void displayNTPTab( bool ); 61 void displayNTPTab( bool );
61 void displayPredictTab( bool ); 62 void displayPredictTab( bool );
62}; 63};
63 64
64#endif 65#endif