diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-10 22:04:24 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-10 22:13:15 +0530 |
| commit | 971854bfefad4c644ac3d5f5d6003f24d551bf1d (patch) | |
| tree | 0f5ee90fd5968d345b157d38964094837315edf0 /include/widgets | |
| parent | d400369084107104f51fe217d5781c8d7bd07ff9 (diff) | |
| download | null-browser-971854bfefad4c644ac3d5f5d6003f24d551bf1d.tar.gz null-browser-971854bfefad4c644ac3d5f5d6003f24d551bf1d.zip | |
Add completer + simplify command parsing + class generator
Diffstat (limited to '')
| -rw-r--r-- | include/widgets/CommandInput.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/widgets/CommandInput.hpp b/include/widgets/CommandInput.hpp index a6ca0ed..3ce9500 100644 --- a/include/widgets/CommandInput.hpp +++ b/include/widgets/CommandInput.hpp @@ -1,8 +1,9 @@ #pragma once #include <QBoxLayout> -#include <QKeyEvent> #include <QLineEdit> +#include <QWidget> +#include <QtCore> class CommandInput : public QWidget { Q_OBJECT |
