diff options
Diffstat (limited to 'src/kile/managetemplatesdialog.cpp')
-rw-r--r-- | src/kile/managetemplatesdialog.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kile/managetemplatesdialog.cpp b/src/kile/managetemplatesdialog.cpp index 112822c..24abfb0 100644 --- a/src/kile/managetemplatesdialog.cpp +++ b/src/kile/managetemplatesdialog.cpp @@ -98,7 +98,7 @@ ManageTemplatesDialog::ManageTemplatesDialog(KileTemplate::Manager *templateMana TQHBoxLayout *controlLayout = new TQHBoxLayout(topLayout, spacingHint()); m_showAllTypesCheckBox = new TQCheckBox(i18n("Show all the templates"), page); m_showAllTypesCheckBox->setChecked(false); - connect(m_showAllTypesCheckBox, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(updateTemplateListView(bool))); + connect(m_showAllTypesCheckBox, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(updateTemplateListView(bool))); controlLayout->addWidget(m_showAllTypesCheckBox); controlLayout->addStretch(); @@ -106,14 +106,14 @@ ManageTemplatesDialog::ManageTemplatesDialog(KileTemplate::Manager *templateMana KPushButton *clearSelectionButton = new KPushButton(page); clearSelectionButton->setPixmap(SmallIcon("clear_left.png")); TQToolTip::add(clearSelectionButton, i18n("Clear Selection")); - connect(clearSelectionButton, TQT_SIGNAL(clicked()),this, TQT_SLOT(clearSelection())); + connect(clearSelectionButton, TQ_SIGNAL(clicked()),this, TQ_SLOT(clearSelection())); controlLayout->addWidget(clearSelectionButton); topLayout->addWidget( new TQLabel(i18n("Select an existing template if you want to overwrite it with your new template.\nNote that you cannot overwrite templates marked with an asterisk:\nif you do select such a template, a new template with the same name\nwill be created in a location you have write access to."),page)); - connect(m_templateList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(slotSelectedTemplate(TQListViewItem*))); - connect(iconbut, TQT_SIGNAL(clicked()),this, TQT_SLOT(slotSelectIcon())); - connect(this, TQT_SIGNAL(aboutToClose()), this, TQT_SLOT(addTemplate())); + connect(m_templateList, TQ_SIGNAL(selectionChanged(TQListViewItem*)), this, TQ_SLOT(slotSelectedTemplate(TQListViewItem*))); + connect(iconbut, TQ_SIGNAL(clicked()),this, TQ_SLOT(slotSelectIcon())); + connect(this, TQ_SIGNAL(aboutToClose()), this, TQ_SLOT(addTemplate())); } // dialog to remove a template @@ -137,7 +137,7 @@ ManageTemplatesDialog::ManageTemplatesDialog(KileTemplate::Manager *templateMana topLayout->addWidget(m_templateList); topLayout->addWidget( new TQLabel(i18n("Please select the template that you want to remove.\nNote that you cannot delete templates marked with an asterisk (for which you lack the necessary deletion permissions)."),page)); - connect(this, TQT_SIGNAL(aboutToClose()), this, TQT_SLOT(removeTemplate())); + connect(this, TQ_SIGNAL(aboutToClose()), this, TQ_SLOT(removeTemplate())); } ManageTemplatesDialog::~ManageTemplatesDialog(){ |