diff options
| author | Kevin Smith <git@kismith.co.uk> | 2012-10-27 14:43:16 (GMT) |
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2012-10-27 14:43:49 (GMT) |
| commit | e757af7278a08f2494ee21457bcd5353c2dec1a6 (patch) | |
| tree | cd1fb82816d8aea1225a88d675283928b275bca3 | |
| parent | b161612f257bcae0c5e702a1ce81a07477bc4925 (diff) | |
| download | swift-e757af7278a08f2494ee21457bcd5353c2dec1a6.zip swift-e757af7278a08f2494ee21457bcd5353c2dec1a6.tar.bz2 | |
Adding newlines where they're missing
Change-Id: Ica0dbbfc5003eeb3f367bc62981f177e21f10ae7
| -rw-r--r-- | Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h | 3 | ||||
| -rw-r--r-- | Swiften/Parser/PayloadParsers/JingleParser.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h b/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h index 824b06d..d5333ad 100644 --- a/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h +++ b/Swiften/Parser/PayloadParsers/JingleFileTransferReceivedParser.h @@ -15,13 +15,14 @@ class JingleFileTransferReceivedParser : public GenericPayloadParser<JingleFileT public: JingleFileTransferReceivedParser(); virtual void handleStartElement(const std::string& element, const std::string&, const AttributeMap& attributes); virtual void handleEndElement(const std::string& element, const std::string&); virtual void handleCharacterData(const std::string& data); private: boost::shared_ptr<PayloadParser> currentPayloadParser; int level; }; -}
\ No newline at end of file +} + diff --git a/Swiften/Parser/PayloadParsers/JingleParser.h b/Swiften/Parser/PayloadParsers/JingleParser.h index ecaca3c..188ead9 100644 --- a/Swiften/Parser/PayloadParsers/JingleParser.h +++ b/Swiften/Parser/PayloadParsers/JingleParser.h @@ -20,13 +20,14 @@ class JingleParser : public GenericPayloadParser<JinglePayload> { virtual void handleEndElement(const std::string& element, const std::string&); virtual void handleCharacterData(const std::string& data); private: JinglePayload::Action stringToAction(const std::string &str) const; private: PayloadParserFactoryCollection* factories; int level; boost::shared_ptr<PayloadParser> currentPayloadParser; }; -};
\ No newline at end of file +}; + |
Swift