diff options
Diffstat (limited to 'src/symboldlg.cpp')
-rw-r--r-- | src/symboldlg.cpp | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/symboldlg.cpp b/src/symboldlg.cpp index 24b654b..f1b4047 100644 --- a/src/symboldlg.cpp +++ b/src/symboldlg.cpp @@ -59,41 +59,41 @@ SymbolDlg::SymbolDlg(TQWidget* pParent, const char* szName) : adjustSize(); // Close the dialogue when either the "OK" or "Cancel" button are clicked - connect(m_pOKButton, SIGNAL(clicked()), this, SLOT(accept())); - connect(m_pCancelButton, SIGNAL(clicked()), this, SLOT(reject())); + connect(m_pOKButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept())); + connect(m_pCancelButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject())); // Run a symbol completion query when the "Hint" button is clicked - connect(m_pHintButton, SIGNAL(clicked()), this, SLOT(slotHintClicked())); + connect(m_pHintButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotHintClicked())); // Add results to the hint list - connect(m_pCscope, SIGNAL(dataReady(FrontendToken*)), this, - SLOT(slotHintDataReady(FrontendToken*))); + connect(m_pCscope, TQ_SIGNAL(dataReady(FrontendToken*)), this, + TQ_SLOT(slotHintDataReady(FrontendToken*))); // Set hint button availability based on the type of query - connect(m_pTypeCombo, SIGNAL(activated(int)), this, - SLOT(slotTypeChanged(int))); + connect(m_pTypeCombo, TQ_SIGNAL(activated(int)), this, + TQ_SLOT(slotTypeChanged(int))); // Selecting an item in the hint list sets it as the current text - connect(m_pHintList, SIGNAL(selectionChanged(TQListViewItem*)), this, - SLOT(slotHintItemSelected(TQListViewItem*))); + connect(m_pHintList, TQ_SIGNAL(selectionChanged(TQListViewItem*)), this, + TQ_SLOT(slotHintItemSelected(TQListViewItem*))); // Double-clicking an item in the hint list accepts that item as the // result of the query (i.e., the item is selcted and the dialogue is // closed) - connect(m_pHintList, SIGNAL(doubleClicked(TQListViewItem*)), this, - SLOT(accept())); + connect(m_pHintList, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, + TQ_SLOT(accept())); // Refresh the hint list when the hint options change - connect(m_pBeginWithRadio, SIGNAL(toggled(bool)), this, - SLOT(slotHintOptionChanged(bool))); - connect(m_pContainRadio, SIGNAL(toggled(bool)), this, - SLOT(slotHintOptionChanged(bool))); + connect(m_pBeginWithRadio, TQ_SIGNAL(toggled(bool)), this, + TQ_SLOT(slotHintOptionChanged(bool))); + connect(m_pContainRadio, TQ_SIGNAL(toggled(bool)), this, + TQ_SLOT(slotHintOptionChanged(bool))); // Show hint query progress information - connect(m_pCscope, SIGNAL(progress(int, int)), this, - SLOT(slotHintProgress(int, int))); - connect(m_pCscope, SIGNAL(finished(uint)), this, - SLOT(slotHintFinished(uint))); + connect(m_pCscope, TQ_SIGNAL(progress(int, int)), this, + TQ_SLOT(slotHintProgress(int, int))); + connect(m_pCscope, TQ_SIGNAL(finished(uint)), this, + TQ_SLOT(slotHintFinished(uint))); } /** |