diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-20 19:39:12 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-20 21:02:39 +0900 |
| commit | f989443912807e83607d0bb08a6ff7889632cf17 (patch) | |
| tree | d58e2ad3c6caae9e0105b30c6a80b0c2cd17c0b4 /klinkstatus/src/ui | |
| parent | ba0eac4558cc2044486988c42039afa274a7db87 (diff) | |
| download | tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.tar.gz tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.zip | |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'klinkstatus/src/ui')
| -rw-r--r-- | klinkstatus/src/ui/tablelinkstatus.cpp | 6 | ||||
| -rw-r--r-- | klinkstatus/src/ui/treeview.cpp | 6 |
2 files changed, 6 insertions, 6 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); } diff --git a/klinkstatus/src/ui/treeview.cpp b/klinkstatus/src/ui/treeview.cpp index c0cebe68..1ce7d009 100644 --- a/klinkstatus/src/ui/treeview.cpp +++ b/klinkstatus/src/ui/treeview.cpp @@ -219,7 +219,7 @@ void TreeView::slotCopyUrlToClipboard() const { TreeViewItem* _item = myItem(currentItem()); TQString content(_item->linkStatus()->absoluteUrl().prettyURL()); - TQClipboard* cb = kapp->clipboard(); + TQClipboard* cb = tdeApp->clipboard(); cb->setText(content); } @@ -227,7 +227,7 @@ void TreeView::slotCopyParentUrlToClipboard() const { TreeViewItem* _item = myItem(currentItem()); TQString content(_item->linkStatus()->parent()->absoluteUrl().prettyURL()); - TQClipboard* cb = kapp->clipboard(); + TQClipboard* cb = tdeApp->clipboard(); cb->setText(content); } @@ -235,7 +235,7 @@ void TreeView::slotCopyCellTextToClipboard() const { TreeViewItem* _item = myItem(currentItem()); TQString cell_text(_item->text(current_column_)); - TQClipboard* cb = kapp->clipboard(); + TQClipboard* cb = tdeApp->clipboard(); cb->setText(cell_text); } |
