diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:00 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:00 -0600 |
commit | 522c7294f06d294c77bc1ea7d0dec4b371c43373 (patch) | |
tree | 22e15f6e31eba6c17ce06d8e1b0de24ef8b8f002 /src/archive.cpp | |
parent | 2a411f53a04f815770074b633e026a141f6fa875 (diff) | |
download | basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.tar.gz basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/archive.cpp')
-rw-r--r-- | src/archive.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/archive.cpp b/src/archive.cpp index 6345a00..6f57f87 100644 --- a/src/archive.cpp +++ b/src/archive.cpp @@ -313,7 +313,7 @@ void Archive::open(const TQString &path) "It can be opened but not every information will be available to you. " "For instance, some notes may be missing because they are of a type only available in new versions. " "When saving the file back, consider to save it to another file, to preserve the original one.") - .tqarg(kapp->aboutData()->programName()), + .arg(kapp->aboutData()->programName()), i18n("Basket Archive Error") ); } @@ -321,7 +321,7 @@ void Archive::open(const TQString &path) KMessageBox::error( 0, i18n("This file was created with a recent version of %1. Please upgrade to a newer version to be able to open that file.") - .tqarg(kapp->aboutData()->programName()), + .arg(kapp->aboutData()->programName()), i18n("Basket Archive Error") ); file.close(); |