summaryrefslogtreecommitdiffstats
path: root/src/app/bookmarkviewcontroller.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:39 -0600
commiteba1d381626d92b860239417f21d813f02ee6394 (patch)
treea1d29560015d98b2ad5aa047f919b8a81e0e9c4b /src/app/bookmarkviewcontroller.cpp
parentd0bdd0d7a768f9935b521f3bd12a4cd72739b96f (diff)
downloadgwenview-eba1d381626d92b860239417f21d813f02ee6394.tar.gz
gwenview-eba1d381626d92b860239417f21d813f02ee6394.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/app/bookmarkviewcontroller.cpp')
-rw-r--r--src/app/bookmarkviewcontroller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/bookmarkviewcontroller.cpp b/src/app/bookmarkviewcontroller.cpp
index 68ee9f0..d09156a 100644
--- a/src/app/bookmarkviewcontroller.cpp
+++ b/src/app/bookmarkviewcontroller.cpp
@@ -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");
}