diff options
Diffstat (limited to 'ktalkd/kcmktalkd/answmachpage.cpp')
-rw-r--r-- | ktalkd/kcmktalkd/answmachpage.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ktalkd/kcmktalkd/answmachpage.cpp b/ktalkd/kcmktalkd/answmachpage.cpp index 3f426821..19e02f60 100644 --- a/ktalkd/kcmktalkd/answmachpage.cpp +++ b/ktalkd/kcmktalkd/answmachpage.cpp @@ -3,7 +3,7 @@ * * Copyright (C) 1998 David Faure, faure@kde.org * - * Requires the Qt widget libraries, available at no cost at + * Requires the TQt widget libraries, available at no cost at * http://www.troll.no/ * * This program is free software; you can redistribute it and/or modify @@ -29,9 +29,9 @@ #include <stdlib.h> #include <klocale.h> // for getenv -KAnswmachPageConfig::KAnswmachPageConfig( TQWidget *parent, const char* name, +KAnswmachPageConfig::KAnswmachPageConfig( TQWidget *tqparent, const char* name, KSimpleConfig *_config) - : KCModule (parent, name) + : KCModule (tqparent, name) { if (!_config) { delete_config = true; @@ -49,27 +49,27 @@ KAnswmachPageConfig::KAnswmachPageConfig( TQWidget *parent, const char* name, mail_edit->setMinimumWidth(150); mail_label = new TQLabel(mail_edit,i18n("&Mail address:"),this); mail_label->adjustSize(); - mail_label->setAlignment( ShowPrefix | AlignVCenter ); + mail_label->tqsetAlignment( ShowPrefix | AlignVCenter ); subj_edit = new TQLineEdit(this); subj_edit->adjustSize(); subj_edit->setMinimumWidth(150); subj_label = new TQLabel(subj_edit, i18n("Mail s&ubject:"),this); subj_label->adjustSize(); - subj_label->setAlignment( ShowPrefix | AlignVCenter ); + subj_label->tqsetAlignment( ShowPrefix | AlignVCenter ); subj_tip = new TQLabel(i18n("Use %s for the caller name"),this); - subj_tip->setAlignment( ShowPrefix ); + subj_tip->tqsetAlignment( ShowPrefix ); head_edit = new TQLineEdit(this); head_edit->adjustSize(); head_edit->setMinimumWidth(150); head_label = new TQLabel(head_edit, i18n("Mail &first line:"),this); head_label->adjustSize(); - head_label->setAlignment( ShowPrefix | AlignVCenter ); + head_label->tqsetAlignment( ShowPrefix | AlignVCenter ); head_tip = new TQLabel( i18n("Use first %s for caller name, and second %s for caller hostname"), this); - head_tip->setAlignment( ShowPrefix ); + head_tip->tqsetAlignment( ShowPrefix ); emptymail_cb = new TQCheckBox(i18n("&Receive a mail even if no message left"), this); emptymail_cb->adjustSize(); @@ -79,7 +79,7 @@ KAnswmachPageConfig::KAnswmachPageConfig( TQWidget *parent, const char* name, msg_ml->setMinimumWidth(150); msg_label = new TQLabel(msg_ml, i18n("&Banner displayed on answering machine startup:"),this); msg_label->adjustSize(); - msg_label->setAlignment( ShowPrefix | AlignVCenter ); + msg_label->tqsetAlignment( ShowPrefix | AlignVCenter ); int h = 10 + answmach_cb->height() + mail_edit->height() + subj_edit->height() + subj_tip->height() + head_edit->height() |