summaryrefslogtreecommitdiffstats
path: root/src/detailedentryitem.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:17 +0900
commitc650254e1855d383dcafd15d18be20becc3b2253 (patch)
tree9c221c2e920b1f8e9098c6047d948833277659de /src/detailedentryitem.cpp
parent3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff)
downloadtellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz
tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/detailedentryitem.cpp')
-rw-r--r--src/detailedentryitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/detailedentryitem.cpp b/src/detailedentryitem.cpp
index bbfe657..19a2030 100644
--- a/src/detailedentryitem.cpp
+++ b/src/detailedentryitem.cpp
@@ -62,13 +62,13 @@ void DetailedEntryItem::setState(State state_) {
if(!m_timer) {
m_timer = new TQTimer();
- m_timer->connect(m_timer, TQT_SIGNAL(timeout()), listView(), TQT_SLOT(triggerUpdate()));
+ m_timer->connect(m_timer, TQ_SIGNAL(timeout()), listView(), TQ_SLOT(triggerUpdate()));
}
m_timer->start(30 * 1000); // every 30 seconds
}
// have to put this in a timer, or it doesn't update properly
- TQTimer::singleShot(500, listView(), TQT_SLOT(triggerUpdate()));
+ TQTimer::singleShot(500, listView(), TQ_SLOT(triggerUpdate()));
}
void DetailedEntryItem::paintCell(TQPainter* p_, const TQColorGroup& cg_,