1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-22 04:37:13 +01:00

Remove stream event from keybind.

Dunno how that got there.
This commit is contained in:
Sandu Liviu Catalin 2019-06-02 18:36:02 +03:00
parent 819567410b
commit 4e916988de
2 changed files with 0 additions and 2 deletions

View File

@ -265,7 +265,6 @@ protected:
// ----------------------------------------------------------------------------------------
SignalPair mOnDestroyed;
SignalPair mOnCustom;
SignalPair mOnStream;
// ----------------------------------------------------------------------------------------
SignalPair mOnKeyPress;

View File

@ -454,7 +454,6 @@ void Core::KeybindInst::InitEvents()
// Proceed to initializing the events
InitSignalPair(mOnDestroyed, mEvents, "Destroyed");
InitSignalPair(mOnCustom, mEvents, "Custom");
InitSignalPair(mOnStream, mEvents, "Stream");
InitSignalPair(mOnKeyPress, mEvents, "KeyPress");
InitSignalPair(mOnKeyRelease, mEvents, "KeyRelease");
}