1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 16:44:05 +02:00

* Fixed a few more GPL headers.

This commit is contained in:
Christian Muehlhaeuser
2011-07-24 20:07:04 +02:00
parent 7555c06c0f
commit 0526d4071d
5 changed files with 66 additions and 24 deletions

View File

@@ -1,18 +1,20 @@
/**************************************************************************** /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
* *
* This file is part of qutIM * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
* *
* Copyright (c) 2011 by Nigmatullin Ruslan <euroelessar@gmail.com> * Tomahawk 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 3 of the License, or
* (at your option) any later version.
* *
*************************************************************************** * Tomahawk is distributed in the hope that it will be useful,
* * * but WITHOUT ANY WARRANTY; without even the implied warranty of
* This file is part of free software; you can redistribute it and/or * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* modify it under the terms of the GNU General Public License as * * GNU General Public License for more details.
* published by the Free Software Foundation; either version 2 of the * *
* License, or (at your option) any later version. * * You should have received a copy of the GNU General Public License
* * * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************** */
****************************************************************************/
#include "tomahawksipmessage.h" #include "tomahawksipmessage.h"

View File

@@ -1,3 +1,21 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
*
* Tomahawk 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 3 of the License, or
* (at your option) any later version.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ENTITYTIME_H #ifndef ENTITYTIME_H
#define ENTITYTIME_H #define ENTITYTIME_H

View File

@@ -1,3 +1,21 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
*
* Tomahawk 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 3 of the License, or
* (at your option) any later version.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#include "tomahawksipmessagefactory.h" #include "tomahawksipmessagefactory.h"
#include <QStringList> #include <QStringList>

View File

@@ -1,18 +1,20 @@
/**************************************************************************** /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
* *
* This file is part of qutIM * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
* *
* Copyright (c) 2011 by Nigmatullin Ruslan <euroelessar@gmail.com> * Tomahawk 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 3 of the License, or
* (at your option) any later version.
* *
*************************************************************************** * Tomahawk is distributed in the hope that it will be useful,
* * * but WITHOUT ANY WARRANTY; without even the implied warranty of
* This file is part of free software; you can redistribute it and/or * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* modify it under the terms of the GNU General Public License as * * GNU General Public License for more details.
* published by the Free Software Foundation; either version 2 of the * *
* License, or (at your option) any later version. * * You should have received a copy of the GNU General Public License
* * * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************** */
****************************************************************************/
#ifndef ENTITYTIMEFACTORY_P_H #ifndef ENTITYTIMEFACTORY_P_H
#define ENTITYTIMEFACTORY_P_H #define ENTITYTIMEFACTORY_P_H

View File

@@ -109,10 +109,12 @@ TomahawkApp::TomahawkApp( int& argc, char *argv[] )
: TOMAHAWK_APPLICATION( argc, argv ) : TOMAHAWK_APPLICATION( argc, argv )
{ {
qDebug() << "TomahawkApp thread:" << this->thread(); qDebug() << "TomahawkApp thread:" << this->thread();
setOrganizationName( QLatin1String( TOMAHAWK_ORGANIZATION_NAME ) ); setOrganizationName( QLatin1String( TOMAHAWK_ORGANIZATION_NAME ) );
setOrganizationDomain( QLatin1String( TOMAHAWK_ORGANIZATION_DOMAIN ) ); setOrganizationDomain( QLatin1String( TOMAHAWK_ORGANIZATION_DOMAIN ) );
setApplicationName( QLatin1String( TOMAHAWK_APPLICATION_NAME ) ); setApplicationName( QLatin1String( TOMAHAWK_APPLICATION_NAME ) );
setApplicationVersion( QLatin1String( TOMAHAWK_VERSION ) ); setApplicationVersion( QLatin1String( TOMAHAWK_VERSION ) );
registerMetaTypes(); registerMetaTypes();
} }