diff --git a/Foundation/include/Poco/DirectoryIterator.h b/Foundation/include/Poco/DirectoryIterator.h index 8749719d8..7c956aca1 100644 --- a/Foundation/include/Poco/DirectoryIterator.h +++ b/Foundation/include/Poco/DirectoryIterator.h @@ -75,7 +75,7 @@ public: virtual DirectoryIterator& operator ++ (); // prefix - POCO_DEPRECATED("") + POCO_DEPRECATED("Please use the prefix increment operator instead") DirectoryIterator operator ++ (int); // postfix /// Please use the prefix increment operator instead. diff --git a/Foundation/include/Poco/Dynamic/Var.h b/Foundation/include/Poco/Dynamic/Var.h index ad1b8d59d..f4089647e 100644 --- a/Foundation/include/Poco/Dynamic/Var.h +++ b/Foundation/include/Poco/Dynamic/Var.h @@ -2288,7 +2288,7 @@ inline bool operator >= (const unsigned long& other, const Var& da) } // namespace Dynamic -using DynamicAny POCO_DEPRECATED("") = Dynamic::Var; +using DynamicAny POCO_DEPRECATED("Replace with Poco::Dynamic::Var") = Dynamic::Var; } // namespace Poco diff --git a/Foundation/include/Poco/Event.h b/Foundation/include/Poco/Event.h index b28c98664..de57ad8b5 100644 --- a/Foundation/include/Poco/Event.h +++ b/Foundation/include/Poco/Event.h @@ -55,7 +55,7 @@ public: /// the event is automatically reset after /// a wait() successfully returns. - POCO_DEPRECATED("") + POCO_DEPRECATED("Please use Event::Event(EventType) instead") explicit Event(bool autoReset); /// Please use Event::Event(EventType) instead. diff --git a/Foundation/include/Poco/FIFOStrategy.h b/Foundation/include/Poco/FIFOStrategy.h index 8c8c3f2aa..1c881fc9f 100644 --- a/Foundation/include/Poco/FIFOStrategy.h +++ b/Foundation/include/Poco/FIFOStrategy.h @@ -25,7 +25,7 @@ namespace Poco { template -class POCO_DEPRECATED("") FIFOStrategy: public DefaultStrategy +class POCO_DEPRECATED("As of release 1.4.2, DefaultStrategy already implements FIFO behavior, so this class is provided for backwards compatibility only") FIFOStrategy: public DefaultStrategy /// Note: As of release 1.4.2, DefaultStrategy already /// implements FIFO behavior, so this class is provided /// for backwards compatibility only.