summaryrefslogtreecommitdiffstats
path: root/klinkstatus/src/ui/tablelinkstatus.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 19:39:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 21:02:39 +0900
commitf989443912807e83607d0bb08a6ff7889632cf17 (patch)
treed58e2ad3c6caae9e0105b30c6a80b0c2cd17c0b4 /klinkstatus/src/ui/tablelinkstatus.cpp
parentba0eac4558cc2044486988c42039afa274a7db87 (diff)
downloadtdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.tar.gz
tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'klinkstatus/src/ui/tablelinkstatus.cpp')
-rw-r--r--klinkstatus/src/ui/tablelinkstatus.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/klinkstatus/src/ui/tablelinkstatus.cpp b/klinkstatus/src/ui/tablelinkstatus.cpp
index 28ac2aa0..de8d2f38 100644
--- a/klinkstatus/src/ui/tablelinkstatus.cpp
+++ b/klinkstatus/src/ui/tablelinkstatus.cpp
@@ -314,7 +314,7 @@ void TableLinkstatus::slotCopyUrlToClipboard() const
{
TableItem* _item = myItem(currentRow(), currentColumn());
TQString content(_item->linkStatus()->absoluteUrl().prettyURL());
- TQClipboard* cb = kapp->clipboard();
+ TQClipboard* cb = tdeApp->clipboard();
cb->setText(content);
}
@@ -322,14 +322,14 @@ void TableLinkstatus::slotCopyParentUrlToClipboard() const
{
TableItem* _item = myItem(currentRow(), currentColumn());
TQString content(_item->linkStatus()->parent()->absoluteUrl().prettyURL());
- TQClipboard* cb = kapp->clipboard();
+ TQClipboard* cb = tdeApp->clipboard();
cb->setText(content);
}
void TableLinkstatus::slotCopyCellTextToClipboard() const
{
TQString cell_text(text(currentRow(), currentColumn()));
- TQClipboard* cb = kapp->clipboard();
+ TQClipboard* cb = tdeApp->clipboard();
cb->setText(cell_text);
}