summaryrefslogtreecommitdiffstats
path: root/korganizer/templatemanagementdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/templatemanagementdialog.cpp')
-rw-r--r--korganizer/templatemanagementdialog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/korganizer/templatemanagementdialog.cpp b/korganizer/templatemanagementdialog.cpp
index 18c82214d..e6ee19da2 100644
--- a/korganizer/templatemanagementdialog.cpp
+++ b/korganizer/templatemanagementdialog.cpp
@@ -25,11 +25,11 @@
**
** In addition, as a special exception, the copyright holders give
** permission to link the code of this program with any edition of
-** the Qt library by Trolltech AS, Norway (or with modified versions
-** of Qt that use the same license as Qt), and distribute linked
+** the TQt library by Trolltech AS, Norway (or with modified versions
+** of TQt that use the same license as TQt), and distribute linked
** combinations including the two. You must obey the GNU General
** Public License in all respects for all of the code used other than
-** Qt. If you modify this file, you may extend this exception to
+** TQt. If you modify this file, you may extend this exception to
** your version of the file, but you are not obligated to do so. If
** you do not wish to do so, delete this exception statement from
** your version.
@@ -45,10 +45,10 @@
#include <klocale.h>
#include <kmessagebox.h>
-TemplateManagementDialog::TemplateManagementDialog(TQWidget *parent, const TQStringList &templates )
- :KDialogBase( parent, "template_management_dialog", true,
+TemplateManagementDialog::TemplateManagementDialog(TQWidget *tqparent, const TQStringList &templates )
+ :KDialogBase( tqparent, "template_management_dialog", true,
i18n("Manage Templates"), Ok|Cancel, Ok, true , i18n("Apply Template")),
- m_templates( templates ), m_newTemplate( TQString::null ), m_changed( false )
+ m_templates( templates ), m_newTemplate( TQString() ), m_changed( false )
{
m_base = new TemplateManagementDialog_base( this, "template_management_dialog_base" );
setMainWidget( m_base );
@@ -72,7 +72,7 @@ void TemplateManagementDialog::slotAddTemplate()
i18n("Please enter a name for the new template:"),
i18n("New Template"), &ok );
if ( newTemplate.isEmpty() || !ok ) return;
- if ( m_templates.find( newTemplate) != m_templates.end() ) {
+ if ( m_templates.tqfind( newTemplate) != m_templates.end() ) {
int rc = KMessageBox::warningContinueCancel( this, i18n("A template with that name already exists, do you want to overwrite it?."), i18n("Duplicate Template Name"), i18n("Overwrite"));
if ( rc == KMessageBox::Cancel ) {
TQTimer::singleShot(0, this, TQT_SLOT( slotAddTemplate() ) );
@@ -102,7 +102,7 @@ void TemplateManagementDialog::slotDeleteTemplate()
m_templates.remove( item->text() );
m_base->m_listBox->removeItem( m_base->m_listBox->currentItem() );
m_changed = true;
- m_base->m_listBox->setSelected(QMAX(current -1, 0), true);
+ m_base->m_listBox->setSelected(TQMAX(current -1, 0), true);
}
void TemplateManagementDialog::slotUpdateDeleteButton( TQListBoxItem *item )