Skip to content
Snippets Groups Projects
Commit 2da6b897 authored by Alexandre Janniaux's avatar Alexandre Janniaux Committed by Steve Lhomme
Browse files

qt: systray: fix systray call for macos

    CXX      dialogs/systray/libqt_plugin_la-systray.lo
    ../../../../modules/gui/qt/dialogs/systray/systray.cpp:101:21: error: no member named 'updateSystrayMenu' in 'VLCMenuBar'
            VLCMenuBar::updateSystrayMenu( this, p_intf );
            ~~~~~~~~~~~~^
    ../../../../modules/gui/qt/dialogs/systray/systray.cpp:101:46: error: use of undeclared identifier 'p_intf'
            VLCMenuBar::updateSystrayMenu( this, p_intf );
                                                 ^
parent daab68e6
No related branches found
No related tags found
1 merge request!6074qt: systray: fix systray call for macos
Pipeline #517089 passed with stage
in 14 minutes and 39 seconds
......@@ -97,11 +97,7 @@ void VLCSystray::handleClick(
{
case QSystemTrayIcon::Trigger:
case QSystemTrayIcon::DoubleClick:
#ifdef Q_OS_MAC
VLCMenuBar::updateSystrayMenu( this, p_intf );
#else
toggleUpdateMenu();
#endif
break;
case QSystemTrayIcon::MiddleClick:
if (PlaylistController* const playlistController = m_intf->p_mainPlaylistController)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment