From b5622ce91307589b03ad5d903214b47ff2277e48 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Mon, 7 Mar 2022 15:51:15 -0500 Subject: Update for app framework removal Changes: - Remove the autobuild scripts and config.xml used by the app framework widget build. - Update the CMake files to just build a "qt-cluster-receiver" binary and install it into /usr/bin by default. - Remove the code in main.cpp that handled reading the WebSocket command-line arguments and passing them to binding related code. Also removed the now unnecessary port and token caching in surface.{hpp,cpp}. Bug-AGL: SPEC-4283 Signed-off-by: Scott Murray Change-Id: I88979f6049212ff790014b9674a87c4c0a582ccb --- app/surface.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'app/surface.hpp') diff --git a/app/surface.hpp b/app/surface.hpp index 82b5c86..6ed5e17 100644 --- a/app/surface.hpp +++ b/app/surface.hpp @@ -37,12 +37,10 @@ class SurfaceHandler { public: - SurfaceHandler(const int port, const std::string &token, const std::string &role); + SurfaceHandler(const std::string &role); void set_bounding_box(int x, int y, int bx, int by, int width, int height); private: - int m_port; - std::string m_token; std::string m_role; int init_agl_shell(void); -- cgit 1.2.3-korg