summaryrefslogtreecommitdiffstats
path: root/src/common/common/storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/common/storage.cpp')
-rw-r--r--src/common/common/storage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common/storage.cpp b/src/common/common/storage.cpp
index 447a8a0..601ff2a 100644
--- a/src/common/common/storage.cpp
+++ b/src/common/common/storage.cpp
@@ -15,7 +15,7 @@ void GenericStorage::delayedChanged()
{
if (_dirty) return;
_dirty = true;
- TQTimer::singleShot(0, this, TQT_SLOT(changedSlot()));
+ TQTimer::singleShot(0, this, TQ_SLOT(changedSlot()));
}
void GenericStorage::changedSlot()
@@ -27,7 +27,7 @@ void GenericStorage::changedSlot()
//----------------------------------------------------------------------------
void GenericViewProxy::addStorage(GenericStorage &storage)
{
- connect(&storage, TQT_SIGNAL(changed()), TQT_SLOT(changed()));
+ connect(&storage, TQ_SIGNAL(changed()), TQ_SLOT(changed()));
}
void GenericViewProxy::changed()