summaryrefslogtreecommitdiffstats
path: root/src/app/bookmarkviewcontroller.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:45 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:45 -0600
commit2b7143e0539396c75306f6e78bf0a5641ed1acfc (patch)
treedb4ea3490b6703f775f11931c6e7c22f943816bd /src/app/bookmarkviewcontroller.cpp
parentff1cff2a1e9b7860d4d3779cf20bf79afbe52470 (diff)
downloadgwenview-2b7143e0539396c75306f6e78bf0a5641ed1acfc.tar.gz
gwenview-2b7143e0539396c75306f6e78bf0a5641ed1acfc.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/app/bookmarkviewcontroller.cpp')
-rw-r--r--src/app/bookmarkviewcontroller.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/bookmarkviewcontroller.cpp b/src/app/bookmarkviewcontroller.cpp
index b40f70e..d09156a 100644
--- a/src/app/bookmarkviewcontroller.cpp
+++ b/src/app/bookmarkviewcontroller.cpp
@@ -98,7 +98,7 @@ public:
if ( !item) return;
if (item->mBookmark.isGroup()) return;
- TQRect rect=mListView->tqitemRect(item);
+ TQRect rect=mListView->itemRect(item);
tip(rect, item->mBookmark.url().prettyURL());
};
@@ -392,11 +392,11 @@ void BookmarkViewController::deleteCurrentBookmark() {
TQString title;
if (bookmark.isGroup()) {
msg=i18n("Are you sure you want to delete the bookmark folder <b>%1</b>?<br>This will delete the folder and all the bookmarks in it.")
- .tqarg(bookmark.text());
+ .arg(bookmark.text());
title=i18n("Delete Bookmark &Folder");
} else {
msg=i18n("Are you sure you want to delete the bookmark <b>%1</b>?")
- .tqarg(bookmark.text());
+ .arg(bookmark.text());
title=i18n("Delete &Bookmark");
}