Skip to content

Commit 1c86383

Browse files
Refactor Init class: update setupContext method signature and include necessary headers
1 parent 0910817 commit 1c86383

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sephera-cpp/Source/gui/include/init.hpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
#include <QPushButton>
44
#include <QLineEdit>
55
#include <QLabel>
6+
#include <QTableWidget>
67
#include "../../context/include/context.hpp"
78
#include "components.hpp"
9+
#include "sephera.hpp"
810

911
using namespace sephera_cpp::context;
1012

@@ -14,7 +16,7 @@ namespace sephera_cpp::gui {
1416
Init();
1517
void setupGui(SepheraWindow *sepheraWindow);
1618

17-
void setupContext();
19+
void setupContext(SepheraWindow *sepheraWindow);
1820

1921
private:
2022
Components *components;
@@ -26,6 +28,8 @@ namespace sephera_cpp::gui {
2628
QPushButton *open_project_btn;
2729
QPushButton *scan_project_btn;
2830
QPushButton *option_btn;
31+
QPushButton *sort_btn;
32+
QTableWidget *resultTable;
2933
};
3034

3135
} // namespace sephera_cpp::gui

0 commit comments

Comments
 (0)