aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Output/pulseaudio/translations
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-10-07 18:05:57 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-10-07 18:05:57 +0000
commited90cdc22d95e24a921a721a8307182d172c9795 (patch)
tree994633652b37ec6c279b3a0dabe0418e0bbd5722 /src/plugins/Output/pulseaudio/translations
parent6a8185ef6679cc329a5fde14bfe97eadca0d2f91 (diff)
downloadqmmp-ed90cdc22d95e24a921a721a8307182d172c9795.tar.gz
qmmp-ed90cdc22d95e24a921a721a8307182d172c9795.tar.bz2
qmmp-ed90cdc22d95e24a921a721a8307182d172c9795.zip
fixed audio converters
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3754 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Output/pulseaudio/translations')
0 files changed, 0 insertions, 0 deletions
ef='#n124'>124 125 126 127 128 129 130
/***************************************************************************
*   Copyright (C) 2006 by Ilya Kotov                                      *
*   forkotov02@hotmail.ru                                                 *
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
*   This program is distributed in the hope that it will be useful,       *
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
*   GNU General Public License for more details.                          *
*                                                                         *
*   You should have received a copy of the GNU General Public License     *
*   along with this program; if not, write to the                         *
*   Free Software Foundation, Inc.,                                       *
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
***************************************************************************/


#include <QFile>
#include <QTextStream>

#include <qmmp/decoder.h>
#include <qmmp/decoderfactory.h>
#include <qmmp/output.h>
#include <qmmp/outputfactory.h>
#include <qmmp/visual.h>
#include <qmmp/visualfactory.h>
#include <qmmp/effect.h>
#include <qmmp/effectfactory.h>
#include <qmmpui/general.h>
#include <qmmpui/generalfactory.h>
#include "version.h"

#include "aboutdialog.h"

static QString getstringFromResource(const QString& res_file)
{
    QString ret_string;
    QFile file(res_file);
    if (file.open(QIODevice::ReadOnly))
    {
        QTextStream ts(&file);
        ts.setCodec("UTF-8");