diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-03-07 15:51:15 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-03-07 15:54:23 -0500 |
commit | b5622ce91307589b03ad5d903214b47ff2277e48 (patch) | |
tree | b6ec6bc48522cbbf720c0a621692a0251143b38f /app/surface.cpp | |
parent | 0fc2ae068b0440cfd885f4a934db203680972fe0 (diff) |
Update for app framework removalneedlefish_13.93.0needlefish/13.93.0marlin_12.93.0marlin/12.93.013.93.012.93.0
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 <scott.murray@konsulko.com>
Change-Id: I88979f6049212ff790014b9674a87c4c0a582ccb
Diffstat (limited to 'app/surface.cpp')
-rw-r--r-- | app/surface.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/surface.cpp b/app/surface.cpp index c0cd8ac..3e9d5ca 100644 --- a/app/surface.cpp +++ b/app/surface.cpp @@ -107,10 +107,8 @@ register_agl_shell_desktop(QPlatformNativeInterface *native) return shell; } -SurfaceHandler::SurfaceHandler(const int port, const std::string &token, const std::string &role) +SurfaceHandler::SurfaceHandler(const std::string &role) { - m_port = port; - m_token = token; m_role = role; if (init_agl_shell()) { |