diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-02-14 18:32:06 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-02-14 18:32:06 -0500 |
commit | bfcc2fa194474a7bc317583072b62c977ae0fc14 (patch) | |
tree | bd904ec5183edf3a38d55e6197cf1898eb0c75b6 /app/fileplayer.cpp | |
parent | f48bbcb2266ebfad46e5cafacfba01c3f6ba3924 (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 qmake files to just build a "settings" 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.
- Add initial .desktop file and icon copied from the launcher
source tree, and updated .pro files to install them.
Bug-AGL: SPEC-4182
Change-Id: I8a8cafc15c1dbe4e65db579bc650a8028c4aa10c
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'app/fileplayer.cpp')
-rw-r--r-- | app/fileplayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/fileplayer.cpp b/app/fileplayer.cpp index a91d609..1bcd2f3 100644 --- a/app/fileplayer.cpp +++ b/app/fileplayer.cpp @@ -22,7 +22,7 @@ #undef DEBUG -static void *gst_loop_thread(GMainLoop *loop) +static void gst_loop_thread(GMainLoop *loop) { if(loop) g_main_loop_run(loop); @@ -116,7 +116,7 @@ gboolean FilePlayer::gstreamer_bus_callback(GstBus *bus, GstMessage *msg, gpoint return static_cast<FilePlayer*>(data)->bus_callback(bus, msg); } -gboolean FilePlayer::bus_callback(GstBus *bus, GstMessage *msg) +gboolean FilePlayer::bus_callback(__attribute__((unused)) GstBus *bus, GstMessage *msg) { switch (GST_MESSAGE_TYPE(msg)) { case GST_MESSAGE_EOS: |