aboutsummaryrefslogtreecommitdiffhomepage
path: root/event.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-27 00:06:07 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-27 00:06:07 -0800
commit451399b3445f2a8f929bfe8893df9b3e931ac2b1 (patch)
tree63ec1a66f45badf99e5aabfabb7eea05f1c1da16 /event.h
parent22a8e57a57fcf41d295fbd8716e89dbdae423a32 (diff)
Migrate to std::vector in event class
Diffstat (limited to 'event.h')
-rw-r--r--event.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/event.h b/event.h
index 6d0f91df..fe235da6 100644
--- a/event.h
+++ b/event.h
@@ -12,6 +12,7 @@
#ifndef FISH_EVENT_H
#define FISH_EVENT_H
+#include "common.h"
/**
The signal number that is used to match any signal
@@ -91,7 +92,7 @@ typedef struct
event_fire. In all other situations, the value of this variable
is ignored.
*/
- array_list_t arguments;
+ wcstring_list_t *arguments;
}
event_t;