aboutsummaryrefslogtreecommitdiffhomepage
path: root/event.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-08-05 13:24:33 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-08-05 13:24:33 -0700
commit84729c4dfa6d16cf81aa23c249d0ffb030549e08 (patch)
tree76e71d7c457f3a377f33dd84a5bb9a7872f5f412 /event.h
parent8de8877c7c0972db668b06ca5d693f622a54c97a (diff)
Additional warnings cleanup, effective C++ violations, dead code removal
Diffstat (limited to 'event.h')
-rw-r--r--event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/event.h b/event.h
index c176a50a..1ba6d01d 100644
--- a/event.h
+++ b/event.h
@@ -85,7 +85,7 @@ struct event_t
*/
std::auto_ptr<wcstring_list_t> arguments;
- event_t(int t) : type(t), param1() { }
+ event_t(int t) : type(t), param1(), str_param1(), function_name(), arguments() { }
/** Copy constructor */
event_t(const event_t &x);