1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 18:12:39 +01:00

- media-sound/mixxx: re-add mixxx to fix Qt5 issues

Mixxx is compiled with Qt5 in ~gx86 and some core features are broken
with Qt5, so we need to backport those following patches.

- https://github.com/mixxxdj/mixxx/pull/845/commits
- https://github.com/mixxxdj/mixxx/pull/848/commits
This commit is contained in:
2017-02-04 22:53:00 +01:00
parent 88a29c1c26
commit 09a17d9652
11 changed files with 1070 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
From 76c53b0f0a2be7b5cf85fa523f3521a5725affb2 Mon Sep 17 00:00:00 2001
From: Uwe Klotz <uwe_klotz@web.de>
Date: Fri, 8 Jan 2016 18:22:33 +0100
Subject: [PATCH] Fix formatting of time durations
---
src/util/time.h | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/util/time.h b/src/util/time.h
index 29187ad..7b38eb4 100644
--- a/src/util/time.h
+++ b/src/util/time.h
@@ -75,7 +75,9 @@ class Time {
const int days = static_cast<int>(dSeconds) / kSecondsPerDay;
dSeconds -= days * kSecondsPerDay;
- QTime t = QTime().addMSecs(dSeconds * kMillisPerSecond);
+ // NOTE(uklotzde): Time() constructs a 'null' object, but
+ // we need 'zero' here.
+ QTime t = QTime(0, 0).addMSecs(dSeconds * kMillisPerSecond);
QString formatString =
(days > 0 ? (QString::number(days) %