author | zautrix <zautrix> | 2005-04-02 14:32:10 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-04-02 14:32:10 (UTC) |
commit | 470327bf20835778a29cd2ce9414baa0cc176829 (patch) (unidiff) | |
tree | 49e20b05c117ddbee53fa3dda10768b012594b14 /microkde | |
parent | b0d17f8f2ef9b09b7d8b8aa0f6cc34f400f8fddd (diff) | |
download | kdepimpi-470327bf20835778a29cd2ce9414baa0cc176829.zip kdepimpi-470327bf20835778a29cd2ce9414baa0cc176829.tar.gz kdepimpi-470327bf20835778a29cd2ce9414baa0cc176829.tar.bz2 |
fixes
-rw-r--r-- | microkde/kutils/kcmultidialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/microkde/kutils/kcmultidialog.cpp b/microkde/kutils/kcmultidialog.cpp index 4daa4ff..bb41b18 100644 --- a/microkde/kutils/kcmultidialog.cpp +++ b/microkde/kutils/kcmultidialog.cpp | |||
@@ -32,6 +32,7 @@ | |||
32 | //US #include <klibloader.h> | 32 | //US #include <klibloader.h> |
33 | #include <krun.h> | 33 | #include <krun.h> |
34 | #include <kprocess.h> | 34 | #include <kprocess.h> |
35 | #include <kglobalsettings.h> | ||
35 | 36 | ||
36 | #include "kcmultidialog.h" | 37 | #include "kcmultidialog.h" |
37 | //US #include "kcmultidialog.moc" | 38 | //US #include "kcmultidialog.moc" |
@@ -40,7 +41,8 @@ | |||
40 | KCMultiDialog::KCMultiDialog(const QString& baseGroup, QWidget *parent, const char *name, bool modal) | 41 | KCMultiDialog::KCMultiDialog(const QString& baseGroup, QWidget *parent, const char *name, bool modal) |
41 | : KDialogBase(IconList, i18n("Configure"), Default |Cancel | Apply | Ok, Ok, | 42 | : KDialogBase(IconList, i18n("Configure"), Default |Cancel | Apply | Ok, Ok, |
42 | parent, name, modal, true), d(0L) | 43 | parent, name, modal, true), d(0L) |
43 | { | 44 | { |
45 | setFont( KGlobalSettings::generalFont() ); | ||
44 | enableButton(Apply, false); | 46 | enableButton(Apply, false); |
45 | //connect(this, SIGNAL(aboutToShowPage(QWidget *)), this, SLOT(slotAboutToShow(QWidget *))); | 47 | //connect(this, SIGNAL(aboutToShowPage(QWidget *)), this, SLOT(slotAboutToShow(QWidget *))); |
46 | 48 | ||