Commit 589ba0abb3017a06868261026873701807a1e703

  • avatar
  • Voker57
  • Fri Sep 04 12:46:32 CEST 2009
Replaced LyricWiki (officially dead) with lyricsplugin

I could have sworn that i've done this already.
  
2828LyricsDialog::LyricsDialog(QWidget *parent) : QDialog(parent) {
2929 setupUi(this);
3030 lyricsBrowser->setOpenLinks(false);
31 m_http = new QHttp("dump.bitcheese.net", 80, this);
31 m_http = new QHttp("www.lyricsplugin.com", 80, this);
3232 connect(m_http, SIGNAL(requestFinished(int,bool)), this, SLOT(gotResponse(int,bool)));
3333}
3434
4242 artistEdit->setText(m_artist);
4343 titleEdit->setText(m_title);
4444 lyricsBrowser->setPlainText(tr("Getting lyrics from server..."));
45 QUrl req("http://dump.bitcheese.net/lwiki.php");
46 req.addQueryItem("func", "getSong");
45 QUrl req("http://www.lyricsplugin.com/winamp03/plugin/");
4746 req.addQueryItem("artist", m_artist);
48 req.addQueryItem("song", m_title);
49 req.addQueryItem("fmt","html");
47 req.addQueryItem("title", m_title);
5048 m_http->get(req.toEncoded());
5149}
5250