Fix qtypes' licenses

- Change from GPL to LGPL
- Add license text when missing
- Minor cosmetic changes to make all headers look the same

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
Luiz Capitulino 2010-05-12 16:34:42 -03:00
parent 39b59d2606
commit 41836a9f7e
19 changed files with 73 additions and 44 deletions

View file

@ -5,6 +5,9 @@
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/ */
#include <check.h> #include <check.h>

View file

@ -1,11 +1,6 @@
/* /*
* QFloat unit-tests. * QFloat unit-tests.
* *
* Copyright (C) 2009 Red Hat Inc.
*
* Authors:
* Luiz Capitulino <lcapitulino@redhat.com>
*
* Copyright IBM, Corp. 2009 * Copyright IBM, Corp. 2009
* *
* Authors: * Authors:

View file

@ -5,6 +5,9 @@
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/ */
#include <check.h> #include <check.h>

View file

@ -6,8 +6,8 @@
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#include <check.h> #include <check.h>

View file

@ -5,6 +5,9 @@
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/ */
#include <check.h> #include <check.h>

View file

@ -1,14 +1,6 @@
/* /*
* QBool Module * QBool Module
* *
* Copyright (C) 2009 Red Hat Inc.
*
* Authors:
* Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*
* Copyright IBM, Corp. 2009 * Copyright IBM, Corp. 2009
* *
* Authors: * Authors:

View file

@ -1,13 +1,13 @@
/* /*
* QDict data type. * QDict Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#include "qint.h" #include "qint.h"

12
qdict.h
View file

@ -1,3 +1,15 @@
/*
* QDict Module
*
* Copyright (C) 2009 Red Hat Inc.
*
* Authors:
* Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/
#ifndef QDICT_H #ifndef QDICT_H
#define QDICT_H #define QDICT_H

View file

@ -6,9 +6,10 @@
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#ifndef QEMU_OBJECTS_H #ifndef QEMU_OBJECTS_H
#define QEMU_OBJECTS_H #define QEMU_OBJECTS_H

View file

@ -1,5 +1,5 @@
/* /*
* QError: QEMU Error data-type. * QError Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *

View file

@ -1,5 +1,5 @@
/* /*
* QError header file. * QError Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *

View file

@ -1,14 +1,6 @@
/* /*
* QFloat Module * QFloat Module
* *
* Copyright (C) 2009 Red Hat Inc.
*
* Authors:
* Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*
* Copyright IBM, Corp. 2009 * Copyright IBM, Corp. 2009
* *
* Authors: * Authors:

7
qint.c
View file

@ -1,14 +1,15 @@
/* /*
* QInt data type. * QInt Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#include "qint.h" #include "qint.h"
#include "qobject.h" #include "qobject.h"
#include "qemu-common.h" #include "qemu-common.h"

12
qint.h
View file

@ -1,3 +1,15 @@
/*
* QInt Module
*
* Copyright (C) 2009 Red Hat Inc.
*
* Authors:
* Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/
#ifndef QINT_H #ifndef QINT_H
#define QINT_H #define QINT_H

View file

@ -1,14 +1,15 @@
/* /*
* QList data type. * QList Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#include "qlist.h" #include "qlist.h"
#include "qobject.h" #include "qobject.h"
#include "qemu-queue.h" #include "qemu-queue.h"

View file

@ -1,14 +1,15 @@
/* /*
* QList data type header. * QList Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#ifndef QLIST_H #ifndef QLIST_H
#define QLIST_H #define QLIST_H

View file

@ -8,8 +8,8 @@
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
* *
* QObject Reference Counts Terminology * QObject Reference Counts Terminology
* ------------------------------------ * ------------------------------------

View file

@ -1,14 +1,15 @@
/* /*
* QString data type. * QString Module
* *
* Copyright (C) 2009 Red Hat Inc. * Copyright (C) 2009 Red Hat Inc.
* *
* Authors: * Authors:
* Luiz Capitulino <lcapitulino@redhat.com> * Luiz Capitulino <lcapitulino@redhat.com>
* *
* This work is licensed under the terms of the GNU GPL, version 2. See * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* the COPYING file in the top-level directory. * See the COPYING.LIB file in the top-level directory.
*/ */
#include "qobject.h" #include "qobject.h"
#include "qstring.h" #include "qstring.h"
#include "qemu-common.h" #include "qemu-common.h"

View file

@ -1,3 +1,15 @@
/*
* QString Module
*
* Copyright (C) 2009 Red Hat Inc.
*
* Authors:
* Luiz Capitulino <lcapitulino@redhat.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/
#ifndef QSTRING_H #ifndef QSTRING_H
#define QSTRING_H #define QSTRING_H