mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
1abc06427b
Signed-off-by: David Spencer <baildon.research@googlemail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
22 lines
880 B
Diff
22 lines
880 B
Diff
From 192b979c57aa0b9a2df4f11ad4851ce4fbf5d38b Mon Sep 17 00:00:00 2001
|
|
From: Spiek <spiek@ymail.com>
|
|
Date: Fri, 27 Dec 2013 13:27:11 +0100
|
|
Subject: [PATCH] Fix missing Cast
|
|
|
|
---
|
|
app/client/Services/RadioService/RadioService.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/app/client/Services/RadioService/RadioService.cpp b/app/client/Services/RadioService/RadioService.cpp
|
|
index 05f22c8..10094b6 100644
|
|
--- a/app/client/Services/RadioService/RadioService.cpp
|
|
+++ b/app/client/Services/RadioService/RadioService.cpp
|
|
@@ -307,7 +307,7 @@ RadioService::mute()
|
|
void
|
|
RadioService::onPhononStateChanged( Phonon::State newstate, Phonon::State oldstate )
|
|
{
|
|
- qDebug() << oldstate << " -> " << newstate;
|
|
+ qDebug() << (int)oldstate << " -> " << (int)newstate;
|
|
if (m_mediaObject == 0) {
|
|
qDebug() << "m_mediaObject is null!";
|
|
return;
|