summaryrefslogtreecommitdiffstats
path: root/libkdepim/kfileio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/kfileio.cpp')
-rw-r--r--libkdepim/kfileio.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libkdepim/kfileio.cpp b/libkdepim/kfileio.cpp
index 6a7eea7c..913ee2cc 100644
--- a/libkdepim/kfileio.cpp
+++ b/libkdepim/kfileio.cpp
@@ -190,7 +190,7 @@ KDE_EXPORT bool kBytesToFile(const char* aBuffer, int len,
if (aAskIfExists)
{
TQString str;
- str = i18n("File %1 exists.\nDo you want to tqreplace it?")
+ str = i18n("File %1 exists.\nDo you want to replace it?")
.arg(aFileName);
rc = KMessageBox::warningContinueCancel(0,
str, i18n("Save to File"), i18n("&Replace"));
@@ -348,8 +348,8 @@ TQString checkAndCorrectPermissionsIfPossible( const TQString &toCheck,
if ( !g.isReadable() ){
error.append(i18n("Folder %1 is inaccessible.").arg(toCheck) + "\n");
} else {
- const QFileInfoList *list = g.entryInfoList();
- QFileInfoListIterator it( *list );
+ const TQFileInfoList *list = g.entryInfoList();
+ TQFileInfoListIterator it( *list );
TQFileInfo *fi;
while ((fi = it.current()) != 0) {
TQString newToCheck = toCheck + "/" + fi->fileName();
@@ -365,7 +365,7 @@ TQString checkAndCorrectPermissionsIfPossible( const TQString &toCheck,
return error;
}
-bool checkAndCorrectPermissionsIfPossibleWithErrorHandling( TQWidget *parent,
+bool checkAndCorrectPermissionsIfPossibleWithErrorHandling( TQWidget *tqparent,
const TQString &toCheck, const bool recursive, const bool wantItReadable,
const bool wantItWritable )
{
@@ -376,7 +376,7 @@ bool checkAndCorrectPermissionsIfPossibleWithErrorHandling( TQWidget *parent,
// it is just a warning.
if ( !error.isEmpty() ) {
kdDebug() << "checkPermissions found:" << error << endl;
- KMessageBox::detailedSorry(parent,
+ KMessageBox::detailedSorry(tqparent,
i18n("Some files or folders do not have "
"the right permissions, please correct them "
"manually."),