This commit is contained in:
2026-03-08 23:14:34 +01:00
parent c752553d2e
commit 0ec5a42c71
3 changed files with 1 additions and 22 deletions

View File

@@ -21,7 +21,7 @@ add_library(rktwebview_qt SHARED
webviewqt.h webviewqt.cpp
rktwebview_internal.h
webviewwindow.h webviewwindow.cpp
webviewapp.h webviewapp.cpp
rktutils.h rktutils.cpp
command.h command.cpp
)

View File

@@ -1,8 +0,0 @@
#include "webviewapp.h"
WebViewApp::WebViewApp(int &argc, char **argv) :
QApplication(argc, argv)
{
}

View File

@@ -1,13 +0,0 @@
#ifndef WEBVIEWAPP_H
#define WEBVIEWAPP_H
#include <QApplication>
class WebViewApp : public QApplication
{
Q_OBJECT
public:
WebViewApp(int &argc, char **argv);
};
#endif // WEBVIEWAPP_H