From f989443912807e83607d0bb08a6ff7889632cf17 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 20 Jan 2025 19:39:12 +0900 Subject: Use tdeApp Signed-off-by: Michele Calgaro --- klinkstatus/src/ui/tablelinkstatus.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'klinkstatus/src/ui/tablelinkstatus.cpp') 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); } -- cgit v1.2.3