summaryrefslogtreecommitdiffstats
path: root/src/qalculatedatasetsdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qalculatedatasetsdialog.cpp')
-rw-r--r--src/qalculatedatasetsdialog.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/qalculatedatasetsdialog.cpp b/src/qalculatedatasetsdialog.cpp
index d30dc9d..25d4373 100644
--- a/src/qalculatedatasetsdialog.cpp
+++ b/src/qalculatedatasetsdialog.cpp
@@ -107,17 +107,17 @@ QalculateDataSetsDialog::QalculateDataSetsDialog(TQWidget *parent, const char *n
resize(TQSize(675, 525).expandedTo(size()));
- connect(newDataSetButton, SIGNAL(clicked()), this, SLOT(newDataSet()));
- connect(editDataSetButton, SIGNAL(clicked()), this, SLOT(editDataSet()));
- connect(deleteDataSetButton, SIGNAL(clicked()), this, SLOT(deleteDataSet()));
- connect(dataSetsView, SIGNAL(selectionChanged()), this, SLOT(dataSetSelected()));
- connect(dataSetsView, SIGNAL(doubleClicked(TQListViewItem*)), this, SLOT(dataSetDoubleClicked(TQListViewItem*)));
-
- connect(newObjectButton, SIGNAL(clicked()), this, SLOT(newObject()));
- connect(editObjectButton, SIGNAL(clicked()), this, SLOT(editObject()));
- connect(deleteObjectButton, SIGNAL(clicked()), this, SLOT(deleteObject()));
- connect(objectsView, SIGNAL(selectionChanged()), this, SLOT(objectSelected()));
- connect(objectsView, SIGNAL(doubleClicked(TQListViewItem*)), this, SLOT(objectDoubleClicked(TQListViewItem*)));
+ connect(newDataSetButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newDataSet()));
+ connect(editDataSetButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editDataSet()));
+ connect(deleteDataSetButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteDataSet()));
+ connect(dataSetsView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(dataSetSelected()));
+ connect(dataSetsView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, TQ_SLOT(dataSetDoubleClicked(TQListViewItem*)));
+
+ connect(newObjectButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(newObject()));
+ connect(editObjectButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(editObject()));
+ connect(deleteObjectButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(deleteObject()));
+ connect(objectsView, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(objectSelected()));
+ connect(objectsView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), this, TQ_SLOT(objectDoubleClicked(TQListViewItem*)));
}
@@ -428,7 +428,7 @@ void QalculateDataSetsDialog::objectSelected() {
le->setReadOnly(true);
le->setFrameStyle(TQFrame::NoFrame | TQFrame::Plain);
QalculateButtonWithData *button = new QalculateButtonWithData((void*) dp, TQIconSet(SmallIcon("edit-paste")), "", attributesGrid);
- TQObject::connect(button, SIGNAL(clickedWithData(void*)), SLOT(insertObjectData(void*)));
+ TQObject::connect(button, TQ_SIGNAL(clickedWithData(void*)), TQ_SLOT(insertObjectData(void*)));
}
}
dp = ds->getNextProperty(&it);