summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/criteriacombobox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:16:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:16:39 +0900
commitc7dcbcecefbabfeece27deadb5507bfccd0a31b0 (patch)
treee96613472370786b0a03bc2cb486e2768f17870b /krecipes/src/widgets/criteriacombobox.cpp
parentd2a4cb93940463a3712553beb94df169eb53b835 (diff)
downloadkrecipes-c7dcbcecefbabfeece27deadb5507bfccd0a31b0.tar.gz
krecipes-c7dcbcecefbabfeece27deadb5507bfccd0a31b0.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'krecipes/src/widgets/criteriacombobox.cpp')
-rw-r--r--krecipes/src/widgets/criteriacombobox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/krecipes/src/widgets/criteriacombobox.cpp b/krecipes/src/widgets/criteriacombobox.cpp
index a5010e6..f04c522 100644
--- a/krecipes/src/widgets/criteriacombobox.cpp
+++ b/krecipes/src/widgets/criteriacombobox.cpp
@@ -18,7 +18,7 @@
CriteriaComboBox::CriteriaComboBox( bool b, TQWidget *parent, RecipeDB *db ) : KComboBox( b, parent ),
database( db )
{
- connect( db, SIGNAL(ratingCriteriaCreated(const Element &)), this, SLOT(addCriteria(const Element &)) );
+ connect( db, TQ_SIGNAL(ratingCriteriaCreated(const Element &)), this, TQ_SLOT(addCriteria(const Element &)) );
}
void CriteriaComboBox::addCriteria( const Element &criteria )