X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=EventParsers%2FVMGEntities%2FVEnvelope.cpp;fp=EventParsers%2FVMGEntities%2FVEnvelope.cpp;h=aa8c10c58992c7709447e0ff2e4cc592a33e6c5f;hb=c0bfd6ab49e36b1f96a500fced976b9eef2aec4b;hp=54b8f41ca27bfb63b61c8fe707ecf095d04d2bd7;hpb=ede40b26168c61bd22caae822aac44fd15da74bc;p=qwerkisync diff --git a/EventParsers/VMGEntities/VEnvelope.cpp b/EventParsers/VMGEntities/VEnvelope.cpp index 54b8f41..aa8c10c 100644 --- a/EventParsers/VMGEntities/VEnvelope.cpp +++ b/EventParsers/VMGEntities/VEnvelope.cpp @@ -27,8 +27,8 @@ using namespace EventParsers::VMGEntities; -VEnvelope::VEnvelope(const SMSEntity* parent) : - SMSEntity(parent) +VEnvelope::VEnvelope(const Settings &settings, const SMSEntity* parent) : + SMSEntity(settings, parent) { } @@ -75,7 +75,7 @@ bool VEnvelope::Read(const QString &initialLine, QTextStream &stream, EventTypes { if(lineData.startsWith("BEGIN:")) { - iReader* reader = Factory::Instantiate(lineData, this); + iReader* reader = Factory::Instantiate(CurrentSettings(), lineData, this); bool valid(NULL != reader && reader->Read(lineData, stream, event)); delete reader;