Skip to content

Commit

Permalink
Provide dummies to fix DESKTOP_APP_DISABLE_DBUS_INTEGRATION=ON build
Browse files Browse the repository at this point in the history
tdesktop 3.3.2 beta no longer builds whith dbus disabled due to missing
`setLoopStatus` and `setShuffle` symbols;  provide the missing dummies.
  • Loading branch information
klemensn authored and john-preston committed Dec 31, 2021
1 parent d985476 commit 161918a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ void SystemMediaControls::setIsStopEnabled(bool value) {
void SystemMediaControls::setPlaybackStatus(PlaybackStatus status) {
}

void SystemMediaControls::setLoopStatus(LoopStatus status) {
}

void SystemMediaControls::setShuffle(bool value) {
}

void SystemMediaControls::setTitle(const QString &title) {
}

Expand Down

0 comments on commit 161918a

Please sign in to comment.