diff options
Diffstat (limited to 'kaboodle/conf.cpp')
-rw-r--r-- | kaboodle/conf.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kaboodle/conf.cpp b/kaboodle/conf.cpp index eb5b0d7d..4570bf2e 100644 --- a/kaboodle/conf.cpp +++ b/kaboodle/conf.cpp @@ -25,19 +25,19 @@ #include <kconfig.h> #include <klocale.h> -#include <qcheckbox.h> -#include <qvbox.h> +#include <tqcheckbox.h> +#include <tqvbox.h> #include "conf.h" #include "view.h" -Kaboodle::Conf::Conf(QWidget *_parent, const char *_name) - : KDialogBase(_parent, _name, true, QString::null, Ok | Cancel) +Kaboodle::Conf::Conf(TQWidget *_parent, const char *_name) + : KDialogBase(_parent, _name, true, TQString::null, Ok | Cancel) { - QVBox *box = makeVBoxMainWidget(); + TQVBox *box = makeVBoxMainWidget(); - autoPlay = new QCheckBox(i18n("Start playing automatically"), box); - quitAfterPlaying = new QCheckBox(i18n("Quit when finished playing"), box); + autoPlay = new TQCheckBox(i18n("Start playing automatically"), box); + quitAfterPlaying = new TQCheckBox(i18n("Quit when finished playing"), box); KConfig &config = *KGlobal::config(); config.setGroup("core"); |