GIT_SILENT: Shut the compiler up about unused variables.

This commit is contained in:
Dawit Alemayehu 2011-06-08 13:49:08 -04:00
parent 42f8d04f6c
commit 5199d71e54
2 changed files with 4 additions and 0 deletions

View File

@ -106,6 +106,8 @@ DataEngine *DataEngineConsumer::dataEngine(const QString &name)
DataEngine *DataEngineConsumer::remoteDataEngine(const KUrl &location, const QString &name)
{
Q_UNUSED(location);
Q_UNUSED(name);
return 0;
}

View File

@ -39,6 +39,8 @@ public:
qint64 readData(char *data, qint64 maxSize)
{
Q_UNUSED(data);
Q_UNUSED(maxSize);
return 0;
}