diff options
Diffstat (limited to 'src/forms/searchform.h')
-rw-r--r-- | src/forms/searchform.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/forms/searchform.h b/src/forms/searchform.h deleted file mode 100644 index da25474..0000000 --- a/src/forms/searchform.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * This file is part of smolbote. It's copyrighted by the contributors recorded - * in the version control history of the file, available from its original - * location: https://neueland.iserlohn-fortress.net/smolbote.hg - * - * SPDX-License-Identifier: GPL-3.0 - */ - -#ifndef SEARCHFORM_H -#define SEARCHFORM_H - -#include <QWidget> - -namespace Ui -{ -class SearchForm; -} - -class MainWindow; -class SearchForm : public QWidget -{ - Q_OBJECT - -public: - explicit SearchForm(MainWindow *parentWindow, QWidget *parent = nullptr); - ~SearchForm(); - -protected: - void focusInEvent(QFocusEvent *e); - -private: - Ui::SearchForm *ui; -}; - -#endif // SEARCHFORM_H |