fixed GH# 194: MessageNotification constructor is inefficient.

This commit is contained in:
Guenter Obiltschnig
2013-05-24 20:05:25 +02:00
parent 1f800c0a2b
commit 6f48b4469e

View File

@@ -49,9 +49,9 @@ namespace Poco {
class MessageNotification: public Notification class MessageNotification: public Notification
{ {
public: public:
MessageNotification(const Message& msg) MessageNotification(const Message& msg):
_msg(msg)
{ {
_msg = msg;
} }
~MessageNotification() ~MessageNotification()