[vlc-commits] [Git][videolan/vlc][master] qt: fix inverted callbacks in playlist controller
Hugo Beauzée-Luyssen (@chouquette)
gitlab at videolan.org
Sat Aug 28 08:45:48 UTC 2021
Hugo Beauzée-Luyssen pushed to branch master at VideoLAN / VLC
Commits:
cc077850 by Pierre Lamot at 2021-08-28T08:31:59+00:00
qt: fix inverted callbacks in playlist controller
typo in previous refactor
fix: #25997
- - - - -
1 changed file:
- modules/gui/qt/playlist/playlist_controller.cpp
Changes:
=====================================
modules/gui/qt/playlist/playlist_controller.cpp
=====================================
@@ -277,8 +277,8 @@ static const struct vlc_playlist_callbacks playlist_callbacks = []{
cbs.on_playback_repeat_changed = on_playlist_playback_repeat_changed;
cbs.on_playback_order_changed= on_playlist_playback_order_changed;
cbs.on_current_index_changed = on_playlist_current_item_changed;
- cbs.on_has_next_changed = on_playlist_has_prev_changed;
- cbs.on_has_prev_changed = on_playlist_has_next_changed;
+ cbs.on_has_next_changed = on_playlist_has_next_changed;
+ cbs.on_has_prev_changed = on_playlist_has_prev_changed;
return cbs;
}();
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/cc077850b2805c59c06de46c18afabe0afa85ce0
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/cc077850b2805c59c06de46c18afabe0afa85ce0
You're receiving this email because of your account on code.videolan.org.
More information about the vlc-commits
mailing list