diff options
Diffstat (limited to 'src/qalculateeditmatrixvectordialog.cpp')
-rw-r--r-- | src/qalculateeditmatrixvectordialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qalculateeditmatrixvectordialog.cpp b/src/qalculateeditmatrixvectordialog.cpp index 1a65a48..3f61c31 100644 --- a/src/qalculateeditmatrixvectordialog.cpp +++ b/src/qalculateeditmatrixvectordialog.cpp @@ -115,11 +115,11 @@ QalculateEditMatrixVectorDialog::QalculateEditMatrixVectorDialog(TQWidget *paren elementsTable = new QalculateEditMatrixTable(0, 0, mainWidget()); grid->addMultiCellWidget(elementsTable, 8, 8, 0, 1); - connect(namesButton, SIGNAL(clicked()), this, SLOT(editNames())); - connect(nameEdit, SIGNAL(textChanged(const TQString&)), this, SLOT(nameChanged(const TQString&))); - connect(rowsBox, SIGNAL(valueChanged(int)), this, SLOT(rowsChanged(int))); - connect(columnsBox, SIGNAL(valueChanged(int)), this, SLOT(columnsChanged(int))); - connect(group, SIGNAL(clicked(int)), this, SLOT(typeChanged(int))); + connect(namesButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editNames())); + connect(nameEdit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(nameChanged(const TQString&))); + connect(rowsBox, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(rowsChanged(int))); + connect(columnsBox, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(columnsChanged(int))); + connect(group, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(typeChanged(int))); } |