GIT_SILENT: Shut the compiler up about unused variables.
This commit is contained in:
parent
42f8d04f6c
commit
5199d71e54
@ -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;
|
||||
}
|
||||
|
||||
|
@ -39,6 +39,8 @@ public:
|
||||
|
||||
qint64 readData(char *data, qint64 maxSize)
|
||||
{
|
||||
Q_UNUSED(data);
|
||||
Q_UNUSED(maxSize);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user