UI/Qt: Clean up some manual forward declarations

Several are unused, and there's certainly no need for the `using`
declaration.
This commit is contained in:
Timothy Flynn 2025-09-03 12:42:06 -04:00 committed by Tim Flynn
commit 95dca6c787
Notes: github-actions[bot] 2025-09-11 18:25:36 +00:00
3 changed files with 2 additions and 12 deletions

View file

@ -24,6 +24,7 @@
namespace Ladybird {
class Tab;
class WebContentView;
class BrowserWindow : public QMainWindow {

View file

@ -17,6 +17,7 @@
namespace Ladybird {
class Tab;
class WebContentView;
class FindInPageWidget final : public QWidget {

View file

@ -27,22 +27,10 @@
#include <QWidget>
class QKeyEvent;
class QLineEdit;
class QSinglePointEvent;
class QTextEdit;
namespace WebView {
class WebContentClient;
}
using WebView::WebContentClient;
namespace Ladybird {
class Tab;
struct WebContentViewInitialState {
double maximum_frames_per_second { 60.0 };
};