aboutsummaryrefslogtreecommitdiff
path: root/spec/LuaRuntimeApiSpec.cpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-05-01 22:38:12 +0530
committerAkshay Nair <phenax5@gmail.com>2025-05-02 16:21:23 +0530
commitf0faa92246c1f5fc58546051ace2d047869447df (patch)
tree68ac05f65ca59915d5459b9957fe874e616fc2be /spec/LuaRuntimeApiSpec.cpp
parent86496d0ce96f2e57f3f301c08488b6421321b3c9 (diff)
downloadnull-browser-f0faa92246c1f5fc58546051ace2d047869447df.tar.gz
null-browser-f0faa92246c1f5fc58546051ace2d047869447df.zip
Refactor events into separate files
Diffstat (limited to '')
-rw-r--r--spec/LuaRuntimeApiSpec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/LuaRuntimeApiSpec.cpp b/spec/LuaRuntimeApiSpec.cpp
index c340a03..fe29fcc 100644
--- a/spec/LuaRuntimeApiSpec.cpp
+++ b/spec/LuaRuntimeApiSpec.cpp
@@ -3,10 +3,10 @@
#include "LuaRuntime.hpp"
#include "WindowActionRouter.hpp"
-#include "events.hpp"
+#include "events/Event.hpp"
#include "testUtils.h"
-class TestEvent1 : public BrowserEvent {
+class TestEvent1 : public Event {
public:
int num;
TestEvent1(int num) : num(num) { kind = "TestEvent1"; }