aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-08-11 09:36:49 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-08-11 09:36:49 +0000
commit08a74fa7194857cb91dc7bd98ccb6927ed6aedec (patch)
treee79c2ba8985851d271f9cb3f6087d09611d1af25
parenteb7068445dc17ce5f4b163fa3f4bb95b433da259 (diff)
downloadqmmp-08a74fa7194857cb91dc7bd98ccb6927ed6aedec.tar.gz
qmmp-08a74fa7194857cb91dc7bd98ccb6927ed6aedec.tar.bz2
qmmp-08a74fa7194857cb91dc7bd98ccb6927ed6aedec.zip
fixed build
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5371 90c681e8-e032-0410-971d-27865f9a5e38
-rw-r--r--src/plugins/Ui/qsui/aboutqsuidialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/Ui/qsui/aboutqsuidialog.cpp b/src/plugins/Ui/qsui/aboutqsuidialog.cpp
index b873c3fbb..01c99d4da 100644
--- a/src/plugins/Ui/qsui/aboutqsuidialog.cpp
+++ b/src/plugins/Ui/qsui/aboutqsuidialog.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2011-2012 by Ilya Kotov *
+ * Copyright (C) 2011-2015 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -35,7 +35,7 @@ AboutQSUIDialog::~AboutQSUIDialog(){}
QString AboutQSUIDialog::loadAbout()
{
QString text;
- text.append("<head>");
+ /*text.append("<head>");
text.append("<META content=\"text/html; charset=UTF-8\">");
text.append("</head>");
text.append("<h3>"+tr("Qmmp Simple User Interface (QSUI)")+"</h3>");
@@ -48,7 +48,7 @@ QString AboutQSUIDialog::loadAbout()
text.append("<p>");
text.append(getStringFromResource(":qsui_authors").replace("<", "&lt;")
.replace(">", "&gt;").replace("\n", "<br>"));
- text.append("</p>");
+ text.append("</p>");*/
return text;
}