openbsd-ports/www/minitube/patches/patch-src_updatechecker_cpp
jakemsr 8da1438269 import minitube-1.0
standalone YouTube.com video browser/player

Minitube is a native YouTube client.  With it you can watch YouTube
videos in a new way: you type a keyword, Minitube gives you an endless
video stream.  Minitube does not require Flash Player.  Minitube is
not about cloning the original YouTube web interface, it aims to
create a new TV-like experience.

started by pirofti at c2k10, finished by me
2010-07-11 00:45:44 +00:00

15 lines
588 B
Plaintext

$OpenBSD: patch-src_updatechecker_cpp,v 1.1.1.1 2010/07/11 00:45:44 jakemsr Exp $
--- src/updatechecker.cpp.orig Wed Jul 7 12:51:47 2010
+++ src/updatechecker.cpp Wed Jul 7 12:52:45 2010
@@ -11,7 +11,9 @@ UpdateChecker::UpdateChecker() {
}
void UpdateChecker::checkForUpdate() {
- QUrl updateUrl(QString(Constants::WEBSITE) + "-ws/release.xml");
+ QString duh = QString(Constants::WEBSITE);
+ duh.append("-ws/release.xml");
+ QUrl updateUrl(duh);
// QUrl updateUrl("http://flavio.tordini.org:8012/release.xml");
QObject *reply = The::http()->get(updateUrl);