1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-26 07:14:47 +02:00

* Giving domme a style-lesson ;-)

This commit is contained in:
Christian Muehlhaeuser
2011-06-24 08:22:39 +02:00
parent 3f4140e023
commit e0cd07c442
2 changed files with 12 additions and 9 deletions

View File

@@ -24,18 +24,20 @@
#include "sourcelist.h"
#include "utils/tomahawkutils.h"
QtScriptResolverHelper::QtScriptResolverHelper( const QString& scriptPath, QObject* parent ): QObject(parent)
QtScriptResolverHelper::QtScriptResolverHelper( const QString& scriptPath, QObject* parent )
: QObject( parent )
{
m_scriptPath = scriptPath;
}
QString
QtScriptResolverHelper::readFile( const QString& fileName )
{
QString path = QFileInfo( m_scriptPath ).absolutePath();
// remove directories
QString cleanedFileName = QFileInfo( fileName ).fileName();
QString absoluteFilePath = path.append( "/" ).append( cleanedFileName );
QFile file( absoluteFilePath );

View File

@@ -92,6 +92,7 @@ public:
virtual QWidget* configUI() const { return 0; } // TODO support properly for qtscript resolvers too!
virtual void saveConfig() {}
public slots:
virtual void resolve( const Tomahawk::query_ptr& query );
virtual void stop();