diff options
Diffstat (limited to 'kpackage/pkgInterface.cpp')
-rw-r--r-- | kpackage/pkgInterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpackage/pkgInterface.cpp b/kpackage/pkgInterface.cpp index b59901d..fba9263 100644 --- a/kpackage/pkgInterface.cpp +++ b/kpackage/pkgInterface.cpp @@ -166,11 +166,11 @@ void pkgInterface::listDir(TQPtrList<packageInfo> *pki, const TQString &fname, c if ( fi->fileName() != TQString::tqfromLatin1(".") && fi->fileName() != TQString::tqfromLatin1("..") ) { - // not current dir and not tqparent dir + // not current dir and not parent dir // -> recursive call: listDir( pki, dir + "/" + fi->fileName(), dir + "/" + fi->fileName(), subdirs ); } else { - // current dir or tqparent dir + // current dir or parent dir // -> notihng to do ; } |