diff options
| -rw-r--r-- | Documentation/API/Doxyfile | 2 | ||||
| -rw-r--r-- | Swiften/Presence/PresenceOracle.h | 4 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/API/Doxyfile b/Documentation/API/Doxyfile index 5e6c79a..1bcc69b 100644 --- a/Documentation/API/Doxyfile +++ b/Documentation/API/Doxyfile @@ -89,7 +89,7 @@ INPUT                  = Swiften  INPUT_ENCODING         = UTF-8  FILE_PATTERNS          = *.h *.cpp  RECURSIVE              = YES -EXCLUDE                =  +EXCLUDE                = Swiften/Parser/PayloadParsers Swiften/Serializer/PayloadSerializers  EXCLUDE_SYMLINKS       = NO  EXCLUDE_PATTERNS       = */3rdParty/* */UnitTest/* */QA/*  EXCLUDE_SYMBOLS        =  diff --git a/Swiften/Presence/PresenceOracle.h b/Swiften/Presence/PresenceOracle.h index b0d1e15..f30d05d 100644 --- a/Swiften/Presence/PresenceOracle.h +++ b/Swiften/Presence/PresenceOracle.h @@ -24,12 +24,12 @@ class StanzaChannel;  			Presence::ref getHighestPriorityPresence(const JID& bareJID) const;  		public: -			boost::signal<void (boost::shared_ptr<Presence>)> onPresenceChange; +			boost::signal<void (Presence::ref)> onPresenceChange;  			boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRequest;  			boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRevoked;  		private: -			void handleIncomingPresence(boost::shared_ptr<Presence> presence); +			void handleIncomingPresence(Presence::ref presence);  			void handleStanzaChannelAvailableChanged(bool);  		private:  | 
 Swift