diff options
Diffstat (limited to 'vmime/misc/importanceHelper.hpp')
-rw-r--r-- | vmime/misc/importanceHelper.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vmime/misc/importanceHelper.hpp b/vmime/misc/importanceHelper.hpp index d450defb..b9118659 100644 --- a/vmime/misc/importanceHelper.hpp +++ b/vmime/misc/importanceHelper.hpp @@ -54,7 +54,7 @@ public: * * @param msg message on which to reset importance */ - static void resetImportance(message* msg); + static void resetImportance(ref <message> msg); /** Return the importance of the specified message. * @@ -62,14 +62,14 @@ public: * @return importance of the message, or default importance is no * information about importance is given in the message */ - static const Importance getImportance(const message* msg); + static const Importance getImportance(const ref <const message> msg); /** Set the importance of the specified message. * * @param msg message on which to set importance * @param i new message importance */ - static void setImportance(message* msg, const Importance i); + static void setImportance(ref <message> msg, const Importance i); }; |