diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-04-08 09:56:18 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2015-04-08 09:56:18 +0200 |
commit | 2da7bfbac166e0a34a35fcfaa9c5846449eed575 (patch) | |
tree | 8569e50193c1fb0f79372d0a5e93449790f85a66 | |
parent | 82d5893b117d4f930a1ccfba40a8811a56abbe09 (diff) | |
download | sink-2da7bfbac166e0a34a35fcfaa9c5846449eed575.tar.gz sink-2da7bfbac166e0a34a35fcfaa9c5846449eed575.zip |
Fixed typo
-rw-r--r-- | dummyresource/resourcefactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dummyresource/resourcefactory.cpp b/dummyresource/resourcefactory.cpp index 4ecebc0..84c1abe 100644 --- a/dummyresource/resourcefactory.cpp +++ b/dummyresource/resourcefactory.cpp | |||
@@ -368,7 +368,7 @@ Async::Job<void> DummyResource::synchronizeWithSource(Akonadi2::Pipeline *pipeli | |||
368 | flatbuffers::FlatBufferBuilder fbb; | 368 | flatbuffers::FlatBufferBuilder fbb; |
369 | //This is the resource type and not the domain type | 369 | //This is the resource type and not the domain type |
370 | auto type = fbb.CreateString("event"); | 370 | auto type = fbb.CreateString("event"); |
371 | auto delta = Akonadi2::EntityBuffer::appendAsVector(m_fbb, entityFbb.GetBufferPointer(), entityFbb.GetSize()); | 371 | auto delta = Akonadi2::EntityBuffer::appendAsVector(fbb, entityFbb.GetBufferPointer(), entityFbb.GetSize()); |
372 | auto location = Akonadi2::Commands::CreateCreateEntity(fbb, type, delta); | 372 | auto location = Akonadi2::Commands::CreateCreateEntity(fbb, type, delta); |
373 | Akonadi2::Commands::FinishCreateEntityBuffer(fbb, location); | 373 | Akonadi2::Commands::FinishCreateEntityBuffer(fbb, location); |
374 | 374 | ||