diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:28:49 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 10:28:49 +0900 |
commit | bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe (patch) | |
tree | 8911427e76b2ea1dc7d98cf2a9a0f2da987802b5 /src/notedrag.cpp | |
parent | 7b0920cd4180823f7a42350d1bdb914d697f4b9c (diff) | |
download | basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.tar.gz basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/notedrag.cpp')
-rw-r--r-- | src/notedrag.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/notedrag.cpp b/src/notedrag.cpp index c4275d0..00d04a1 100644 --- a/src/notedrag.cpp +++ b/src/notedrag.cpp @@ -488,8 +488,8 @@ Note* NoteDrag::decodeHierarchy(TQDataStream &stream, Basket *parent, bool moveF note->content()->setFileName(newFileName); TDEIO::FileCopyJob *copyJob = TDEIO::file_move(KURL(fullPath), KURL(parent->fullPath() + newFileName), /*perms=*/-1, /*override=*/true, /*resume=*/false, /*showProgressInfo=*/false); - parent->connect( copyJob, TQT_SIGNAL(result(TDEIO::Job *)), - parent, TQT_SLOT(slotCopyingDone2(TDEIO::Job *)) ); + parent->connect( copyJob, TQ_SIGNAL(result(TDEIO::Job *)), + parent, TQ_SLOT(slotCopyingDone2(TDEIO::Job *)) ); } note->setGroupWidth(groupWidth); note->setParentNote(0); @@ -514,8 +514,8 @@ Note* NoteDrag::decodeHierarchy(TQDataStream &stream, Basket *parent, bool moveF else copyJob = TDEIO::file_copy(KURL(fullPath), KURL(parent->fullPath() + newFileName), /*perms=*/-1, /*override=*/true, /*resume=*/false, /*showProgressInfo=*/false); - parent->connect( copyJob, TQT_SIGNAL(result(TDEIO::Job *)), - parent, TQT_SLOT(slotCopyingDone2(TDEIO::Job *)) ); + parent->connect( copyJob, TQ_SIGNAL(result(TDEIO::Job *)), + parent, TQ_SLOT(slotCopyingDone2(TDEIO::Job *)) ); note->setGroupWidth(groupWidth); note->setAddedDate(addedDate); note->setLastModificationDate(lastModificationDate); |