From kde-commits Wed Mar 02 22:32:18 2005 From: Tom Albers Date: Wed, 02 Mar 2005 22:32:18 +0000 To: kde-commits Subject: kdepim/libkdepim Message-Id: <20050302223218.897B516EF1 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110980274506884 CVS commit by toma: Changed reference->value for the bools M +5 -5 kfileio.cpp 1.51 M +5 -5 kfileio.h 1.15 --- kdepim/libkdepim/kfileio.cpp #1.50:1.51 @@ -269,7 +269,7 @@ KDE_EXPORT bool kByteArrayToFile(const Q -QString checkAndCorrectPermissionsIfPossible(const QString &toCheck, - const bool &recursive, const bool &wantItReadable, - const bool &wantItWritable) +QString checkAndCorrectPermissionsIfPossible( const QString &toCheck, + const bool recursive, const bool wantItReadable, + const bool wantItWritable ) { // First we have to find out which type the toCheck is. This can be @@ -367,6 +367,6 @@ QString checkAndCorrectPermissionsIfPoss bool checkAndCorrectPermissionsIfPossibleWithErrorHandling( QWidget *parent, - const QString &toCheck, const bool &recursive, const bool &wantItReadable, - const bool &wantItWritable) + const QString &toCheck, const bool recursive, const bool wantItReadable, + const bool wantItWritable ) { QString error = checkAndCorrectPermissionsIfPossible(toCheck, recursive, --- kdepim/libkdepim/kfileio.h #1.14:1.15 @@ -70,7 +70,7 @@ KDE_EXPORT bool kByteArrayToFile(const Q * have the right permissions. If empty, then all permissions are ok. */ -QString checkAndCorrectPermissionsIfPossible(const QString &toCheck, - const bool &recursive, const bool &wantItReadable, - const bool &wantItWritable); +QString checkAndCorrectPermissionsIfPossible( const QString &toCheck, + const bool recursive, const bool wantItReadable, + const bool wantItWritable ); /** @@ -99,6 +99,6 @@ QString checkAndCorrectPermissionsIfPoss */ bool checkAndCorrectPermissionsIfPossibleWithErrorHandling( QWidget *parent, - const QString &toCheck, const bool &recursive, const bool &wantItReadable, - const bool &wantItWritable); + const QString &toCheck, const bool recursive, const bool wantItReadable, + const bool wantItWritable ); }