fix return value

svn path=/trunk/KDE/kdebase/workspace/lib/plasma/; revision=671375
This commit is contained in:
Dirk Mueller 2007-06-04 16:11:55 +00:00
parent 65be58f69e
commit ab560f1242
2 changed files with 2 additions and 2 deletions

View File

@ -252,7 +252,7 @@ bool DataEngine::isValid() const
return d->valid; return d->valid;
} }
bool DataEngine::setValid(bool valid) void DataEngine::setValid(bool valid)
{ {
d->valid = valid; d->valid = valid;
} }

View File

@ -223,7 +223,7 @@ class PLASMA_EXPORT DataEngine : public QObject
* *
* @param valid whether or not the engine is valid * @param valid whether or not the engine is valid
**/ **/
bool setValid(bool valid); void setValid(bool valid);
private Q_SLOTS: private Q_SLOTS:
void checkForUpdates(); void checkForUpdates();