Skip to content

Commit efd4c3f

Browse files
committed
Register the uicomponents module
1 parent 647967f commit efd4c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// SPDX-License-Identifier: GPL-3.0-or-later
22

33
#include "app.h"
4-
#include "globalmodule.h"
4+
#include "uicomponents/uicomponentsmodule.h"
55
#include "keyboard/keyboardmodule.h"
66

77
using namespace scratchcpp;
88

99
int main(int argc, char *argv[])
1010
{
1111
App app;
12-
app.addModule(new GlobalModule);
12+
app.addModule(new uicomponents::UiComponentsModule);
1313
app.addModule(new keyboard::KeyboardModule);
1414

1515
return app.run(argc, argv);

0 commit comments

Comments
 (0)