diff --git a/rktwebview_qt/CMakeLists.txt b/rktwebview_qt/CMakeLists.txt index 561471d..6894b03 100644 --- a/rktwebview_qt/CMakeLists.txt +++ b/rktwebview_qt/CMakeLists.txt @@ -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 ) diff --git a/rktwebview_qt/webviewapp.cpp b/rktwebview_qt/webviewapp.cpp deleted file mode 100644 index 357bc2f..0000000 --- a/rktwebview_qt/webviewapp.cpp +++ /dev/null @@ -1,8 +0,0 @@ -#include "webviewapp.h" - - -WebViewApp::WebViewApp(int &argc, char **argv) : - QApplication(argc, argv) -{ - -} diff --git a/rktwebview_qt/webviewapp.h b/rktwebview_qt/webviewapp.h deleted file mode 100644 index a450b65..0000000 --- a/rktwebview_qt/webviewapp.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef WEBVIEWAPP_H -#define WEBVIEWAPP_H - -#include - -class WebViewApp : public QApplication -{ - Q_OBJECT -public: - WebViewApp(int &argc, char **argv); -}; - -#endif // WEBVIEWAPP_H