summaryrefslogtreecommitdiffstats
path: root/src/notefactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:00 -0600
commit522c7294f06d294c77bc1ea7d0dec4b371c43373 (patch)
tree22e15f6e31eba6c17ce06d8e1b0de24ef8b8f002 /src/notefactory.cpp
parent2a411f53a04f815770074b633e026a141f6fa875 (diff)
downloadbasket-522c7294f06d294c77bc1ea7d0dec4b371c43373.tar.gz
basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/notefactory.cpp')
-rw-r--r--src/notefactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/notefactory.cpp b/src/notefactory.cpp
index 6292cef..f35728b 100644
--- a/src/notefactory.cpp
+++ b/src/notefactory.cpp
@@ -264,7 +264,7 @@ TQString NoteFactory::createNoteLauncherFile(const TQString &command, const TQSt
"Name=%2\n"
"Icon=%3\n"
"Encoding=UTF-8\n"
- "Type=Application\n").tqarg(command, name, icon.isEmpty() ? TQString("exec") : icon);
+ "Type=Application\n").arg(command, name, icon.isEmpty() ? TQString("exec") : icon);
TQString fileName = fileNameForNewNote(parent, "launcher.desktop");
TQString fullPath = parent->fullPathForFileName(fileName);
// parent->dontCareOfCreation(fullPath);
@@ -445,7 +445,7 @@ Note* NoteFactory::dropNote(TQMimeSource *source, Basket *parent, bool fromDrop,
TQString message = i18n("<p>%1 doesn't support the data you've dropped.<br>"
"It however created a generic note, allowing you to drag or copy it to an application that understand it.</p>"
"<p>If you want the support of these data, please contact developer or visit the "
- "<a href=\"http://basket.kde.org/dropdb.php\">BasKet Drop Database</a>.</p>").tqarg(kapp->aboutData()->programName());
+ "<a href=\"http://basket.kde.org/dropdb.php\">BasKet Drop Database</a>.</p>").arg(kapp->aboutData()->programName());
KMessageBox::information(parent, message, i18n("Unsupported MIME Type(s)"),
"unsupportedDropInfo", KMessageBox::AllowLink);
return note;
@@ -682,7 +682,7 @@ Note* NoteFactory::copyFileAndLoad(const KURL &url, Basket *parent)
if (Global::debugWindow)
*Global::debugWindow << "copyFileAndLoad: " + url.prettyURL() + " to " + fullPath;
-// TQString annotations = i18n("Original file: %1").tqarg(url.prettyURL());
+// TQString annotations = i18n("Original file: %1").arg(url.prettyURL());
// parent->dontCareOfCreation(fullPath);
@@ -710,7 +710,7 @@ Note* NoteFactory::moveFileAndLoad(const KURL &url, Basket *parent)
if (Global::debugWindow)
*Global::debugWindow << "moveFileAndLoad: " + url.prettyURL() + " to " + fullPath;
-// TQString annotations = i18n("Original file: %1").tqarg(url.prettyURL());
+// TQString annotations = i18n("Original file: %1").arg(url.prettyURL());
// parent->dontCareOfCreation(fullPath);