Added constructor to initialize all members.

This commit is contained in:
Mark de Wever 2011-03-06 18:27:47 +00:00
parent 61ce2a151a
commit a51d55b939

View file

@ -1074,6 +1074,13 @@ static bool kde_style = false;
struct wnotify
{
wnotify()
: id()
, owner()
, message()
{
}
uint32_t id;
std::string owner;
std::string message;