diff options
Diffstat (limited to 'korganizer/plugins/hebrew/configdialog.cpp')
-rw-r--r-- | korganizer/plugins/hebrew/configdialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/korganizer/plugins/hebrew/configdialog.cpp b/korganizer/plugins/hebrew/configdialog.cpp index aad50a680..6298151ac 100644 --- a/korganizer/plugins/hebrew/configdialog.cpp +++ b/korganizer/plugins/hebrew/configdialog.cpp @@ -19,33 +19,33 @@ #include "configdialog.h" #include "configdialog.moc" #include <klocale.h> -#include <qlayout.h> +#include <tqlayout.h> #include <kapplication.h> #include <kglobal.h> #include <kconfig.h> #include <kstandarddirs.h> #include <ksimpleconfig.h> -ConfigDialog::ConfigDialog(QWidget * parent):KDialogBase(Plain, i18n("Configure Holidays"), Ok|Cancel, Ok, +ConfigDialog::ConfigDialog(TQWidget * parent):KDialogBase(Plain, i18n("Configure Holidays"), Ok|Cancel, Ok, parent) { - QFrame *topFrame = plainPage(); - QVBoxLayout *topLayout = - new QVBoxLayout(topFrame, 0, spacingHint()); + TQFrame *topFrame = plainPage(); + TQVBoxLayout *topLayout = + new TQVBoxLayout(topFrame, 0, spacingHint()); - israel_box = new QCheckBox(topFrame); + israel_box = new TQCheckBox(topFrame); israel_box->setText(i18n("Use Israeli holidays")); topLayout->addWidget(israel_box); - parsha_box = new QCheckBox(topFrame); + parsha_box = new TQCheckBox(topFrame); parsha_box->setText(i18n("Show weekly parsha")); topLayout->addWidget(parsha_box); - omer_box = new QCheckBox(topFrame); + omer_box = new TQCheckBox(topFrame); omer_box->setText(i18n("Show day of Omer")); topLayout->addWidget(omer_box); - chol_box = new QCheckBox(topFrame); + chol_box = new TQCheckBox(topFrame); chol_box->setText(i18n("Show Chol HaMoed")); topLayout->addWidget(chol_box); |