summaryrefslogtreecommitdiffstats
path: root/src/kile/kileactions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kileactions.cpp')
-rw-r--r--src/kile/kileactions.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/kile/kileactions.cpp b/src/kile/kileactions.cpp
index 8a372d4..4898769 100644
--- a/src/kile/kileactions.cpp
+++ b/src/kile/kileactions.cpp
@@ -88,8 +88,8 @@ Tag::~Tag()
void Tag::init(const TQObject *receiver, const char *slot)
{
- connect(this, TQT_SIGNAL(activated()), TQT_SLOT(emitData()));
- connect(this, TQT_SIGNAL(activated(const KileAction::TagData&)), receiver, slot);
+ connect(this, TQ_SIGNAL(activated()), TQ_SLOT(emitData()));
+ connect(this, TQ_SIGNAL(activated(const KileAction::TagData&)), receiver, slot);
}
void Tag::emitData()
@@ -215,8 +215,8 @@ InputDialog::InputDialog(const TQString &caption, uint options, const TQStringLi
input->setMinimumWidth(300);
focus = input;
- connect(input, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(setTag(const TQString&)));
- connect(this, TQT_SIGNAL(setInput(const TQString&)), input, TQT_SLOT(setEditText(const TQString&)));
+ connect(input, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(setTag(const TQString&)));
+ connect(this, TQ_SIGNAL(setInput(const TQString&)), input, TQ_SLOT(setEditText(const TQString&)));
if ( options & KileAction::ShowBrowseButton )
gbox->addWidget(input,1,0);
else
@@ -252,8 +252,8 @@ InputDialog::InputDialog(const TQString &caption, uint options, const TQStringLi
input->setMinimumWidth(300);
focus = input;
- connect(input, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(setTag(const TQString&)));
- connect(this, TQT_SIGNAL(setInput(const TQString&)), input, TQT_SLOT(setText(const TQString&)));
+ connect(input, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(setTag(const TQString&)));
+ connect(this, TQ_SIGNAL(setInput(const TQString&)), input, TQ_SLOT(setText(const TQString&)));
if ( options & KileAction::ShowBrowseButton )
gbox->addWidget(input,1,0);
else
@@ -273,13 +273,13 @@ InputDialog::InputDialog(const TQString &caption, uint options, const TQStringLi
gbox->addWidget(pbutton,1,2);
gbox->setColSpacing(1,8);
gbox->setColSpacing(2, pbutton->sizeHint().width()+5 );
- connect(pbutton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotBrowse()));
+ connect(pbutton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotBrowse()));
}
if ( options & KileAction::ShowAlternative)
{
TQCheckBox * m_checkbox = new TQCheckBox(alter, page, "input_dialog_checkbox");
- connect(m_checkbox, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAltClicked()));
+ connect(m_checkbox, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAltClicked()));
m_useAlternative=false;
gbox->addMultiCellWidget(m_checkbox,2,2,0,2);
}
@@ -368,7 +368,7 @@ Select::Select(const TQString &text, const TDEShortcut &cut, TDEActionCollection
void Select::init()
{
- connect(this, TQT_SIGNAL(activated(const TQString&)), TQT_SLOT(emitData(const TQString &)));
+ connect(this, TQ_SIGNAL(activated(const TQString&)), TQ_SLOT(emitData(const TQString &)));
}
void Select::emitData(const TQString & name)