aboutsummaryrefslogtreecommitdiffstats
diff options
authorJason A. Donenfeld <Jason@zx2c4.com>2008-10-24 15:04:44 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2008-10-24 15:04:44 -0400
commitc50034a21eb7bef1f6241be66b54db4aaac779a4 (patch)
treeb2e328265f0f6ffeed3b0138187e7d20c4f58f2e
parentChanged search bar implementation. Fixed scroller. Changed include types for better kde4 integration. Style changes. (diff)
downloadzmusicplayer-c50034a21eb7bef1f6241be66b54db4aaac779a4.tar.xz
zmusicplayer-c50034a21eb7bef1f6241be66b54db4aaac779a4.zip
Updated hard coded hostname and paths for music.zx2c4.com move.
-rw-r--r--PlayerWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/PlayerWindow.cpp b/PlayerWindow.cpp
index 22efb57..4fce41f 100644
--- a/PlayerWindow.cpp
+++ b/PlayerWindow.cpp
@@ -91,7 +91,7 @@ void PlayerWindow::setupUi()
m_downloadProgress = new QProgressBar;
statusBar()->addWidget(m_downloadProgress, 1);
statusBar()->hide();
- m_credentials = new Credentials("zx2c4.com", "music/getlisting.php?language=xml", "music/getsong.php?hash=%1");
+ m_credentials = new Credentials("music.zx2c4.com", "getlisting.php?language=xml", "getsong.php?hash=%1");
connect(m_credentials, SIGNAL(receivedList(const QList<Song*>)), this, SLOT(setupTable(const QList<Song*>)));
m_treeView->setChildWidget(m_credentials);
m_credentials->setDownloadProgressBar(m_downloadProgress);