-rw-r--r-- | kmicromail/settingsdialog.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kmicromail/settingsdialog.h b/kmicromail/settingsdialog.h index 6b4d456..042b69f 100644 --- a/kmicromail/settingsdialog.h +++ b/kmicromail/settingsdialog.h @@ -1,29 +1,30 @@ #ifndef SETTINGS_DIALOG_H #define SETTINGS_DIALOG_H #include <qwidget.h> +#include <qfont.h> #include "settingsdialogui.h" class SettingsDialog : public SettingsDialogUI { Q_OBJECT public: SettingsDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~SettingsDialog(); private: void readConfig(); void writeConfig(); - + QFont mAppFont, mComposeFont, mReadFont; private slots: void accept(); }; #endif |