summaryrefslogtreecommitdiffstats
path: root/common/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/resource.cpp')
-rw-r--r--common/resource.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/common/resource.cpp b/common/resource.cpp
index 11a03ca..ae28485 100644
--- a/common/resource.cpp
+++ b/common/resource.cpp
@@ -39,12 +39,18 @@ Resource::~Resource()
39 //delete d; 39 //delete d;
40} 40}
41 41
42void Resource::processCommand(uint messageId, int commandId, const QByteArray &data, uint size, Pipeline *pipeline) 42void Resource::processCommand(int commandId, const QByteArray &data, uint size, Pipeline *pipeline)
43{ 43{
44 Q_UNUSED(commandId)
45 Q_UNUSED(data)
46 Q_UNUSED(size)
47 Q_UNUSED(pipeline)
48 pipeline->null();
44} 49}
45 50
46void Resource::synchronizeWithSource() 51void Resource::synchronizeWithSource(Pipeline *pipeline)
47{ 52{
53 pipeline->null();
48} 54}
49 55
50class ResourceFactory::Private 56class ResourceFactory::Private