diff options
Diffstat (limited to 'src/softwareimporters.cpp')
-rw-r--r-- | src/softwareimporters.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/softwareimporters.cpp b/src/softwareimporters.cpp index 2176907..24a20ed 100644 --- a/src/softwareimporters.cpp +++ b/src/softwareimporters.cpp @@ -24,11 +24,11 @@ #include <klocale.h> #include <kfiledialog.h> #include <tqptrstack.h> -#include <layout.h> +#include <tqlayout.h> #include <tqvbuttongroup.h> #include <tqradiobutton.h> #include <kmessagebox.h> -#include <textedit.h> +#include <tqtextedit.h> #include "softwareimporters.h" #include "basket.h" @@ -216,7 +216,7 @@ void SoftwareImporters::finishImport(Basket *basket) // Focus the FIRST note (the last inserted note is currently focused!): basket->setFocusedNote(basket->firstNoteShownInStack()); - // Relayout every notes at theire new place and simulate a load animation (because already loaded just after the creation). + // Retqlayout every notes at theire new place and simulate a load animation (because already loaded just after the creation). // Without a relayouting, notes on the bottom would comes from the top (because they were inserted on top) and clutter the animation load: basket->relayoutNotes(/*animate=*/false); basket->animateLoad(); @@ -491,7 +491,7 @@ void SoftwareImporters::importTextFile() ); // First create a basket for it: - TQString title = i18n("From TextFile.txt", "From %1").arg(KURL(fileName).fileName()); + TQString title = i18n("From TextFile.txt", "From %1").tqarg(KURL(fileName).fileName()); BasketFactory::newBasket(/*icon=*/"txt", title, /*backgroundImage=*/"", /*backgroundColor=*/TQColor(), /*textColor=*/TQColor(), /*templateName=*/"1column", /*createIn=*/0); Basket *basket = Global::bnpView->currentBasket(); basket->load(); |