diff options
Diffstat (limited to 'indra/newview/llviewerkeyboard.h')
-rw-r--r-- | indra/newview/llviewerkeyboard.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llviewerkeyboard.h b/indra/newview/llviewerkeyboard.h index fd024d0902..df31e17c70 100644 --- a/indra/newview/llviewerkeyboard.h +++ b/indra/newview/llviewerkeyboard.h @@ -40,6 +40,9 @@ const S32 MAX_KEY_BINDINGS = 128; // was 60 class LLNamedFunction { public: + LLNamedFunction() : mName(NULL), mFunction(NULL) { }; + ~LLNamedFunction() { }; + const char *mName; LLKeyFunc mFunction; }; |