diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:31:17 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 10:31:17 +0900 |
commit | c650254e1855d383dcafd15d18be20becc3b2253 (patch) | |
tree | 9c221c2e920b1f8e9098c6047d948833277659de /src/document.cpp | |
parent | 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff) | |
download | tellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/document.cpp')
-rw-r--r-- | src/document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/document.cpp b/src/document.cpp index 97a5c5a..9684211 100644 --- a/src/document.cpp +++ b/src/document.cpp @@ -149,7 +149,7 @@ bool Document::openDocument(const KURL& url_) { // } if(m_importer->hasImages()) { m_cancelImageWriting = false; - TQTimer::singleShot(500, this, TQT_SLOT(slotLoadAllImages())); + TQTimer::singleShot(500, this, TQ_SLOT(slotLoadAllImages())); } else { emit signalCollectionImagesLoaded(m_coll); m_importer->deleteLater(); |