[cheese/three-point-oh] add copyright assignments
- From: Daniel G. Siegel <dgsiegel src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cheese/three-point-oh] add copyright assignments
- Date: Fri, 16 Jul 2010 18:28:56 +0000 (UTC)
commit f393f3c6ecf9c9b863b8b84e6e2b3f80e94dab0e
Author: daniel g. siegel <dgsiegel gnome org>
Date: Fri Jul 16 20:27:35 2010 +0200
add copyright assignments
libcheese/cheese-effect.c | 63 +++++++++++++++++++++++++-------------
libcheese/cheese-effect.h | 19 ++++++++++++
src/cheese-countdown.vala | 21 +++++++++++++
src/cheese-effects-manager.vala | 21 +++++++++++++
src/cheese-main.vala | 21 +++++++++++++
src/cheese-preferences.vala | 21 +++++++++++++
src/cheese-window.vala | 21 +++++++++++++
7 files changed, 165 insertions(+), 22 deletions(-)
---
diff --git a/libcheese/cheese-effect.c b/libcheese/cheese-effect.c
index ee7fa06..7207cec 100644
--- a/libcheese/cheese-effect.c
+++ b/libcheese/cheese-effect.c
@@ -1,8 +1,27 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <gst/gst.h>
#include "cheese-effect.h"
-enum
+enum
{
PROP_O,
PROP_NAME,
@@ -25,10 +44,10 @@ struct _CheeseEffectPrivate {
static void
cheese_effect_get_property (GObject *object, guint property_id,
- GValue *value, GParamSpec *pspec)
+ GValue *value, GParamSpec *pspec)
{
CheeseEffectPrivate *priv = CHEESE_EFFECT_GET_PRIVATE (object);
-
+
switch (property_id) {
case PROP_NAME:
g_value_set_string (value, priv->name);
@@ -46,10 +65,10 @@ cheese_effect_get_property (GObject *object, guint property_id,
static void
cheese_effect_set_property (GObject *object, guint property_id,
- const GValue *value, GParamSpec *pspec)
+ const GValue *value, GParamSpec *pspec)
{
CheeseEffectPrivate *priv = CHEESE_EFFECT_GET_PRIVATE (object);
-
+
switch (property_id) {
case PROP_NAME:
g_free (priv->name);
@@ -74,30 +93,30 @@ static void
cheese_effect_class_init (CheeseEffectClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
-
+
g_type_class_add_private (klass, sizeof (CheeseEffectPrivate));
-
+
object_class->get_property = cheese_effect_get_property;
object_class->set_property = cheese_effect_set_property;
g_object_class_install_property (object_class, PROP_NAME,
- g_param_spec_string ("name",
- NULL,
- NULL,
- "",
- G_PARAM_READWRITE));
+ g_param_spec_string ("name",
+ NULL,
+ NULL,
+ "",
+ G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_PIPELINE_DESC,
- g_param_spec_string ("pipeline_desc",
- NULL,
- NULL,
- "",
- G_PARAM_READWRITE));
+ g_param_spec_string ("pipeline_desc",
+ NULL,
+ NULL,
+ "",
+ G_PARAM_READWRITE));
g_object_class_install_property (object_class, PROP_CONTROL_VALVE,
- g_param_spec_object ("control_valve",
- NULL,
- NULL,
- GST_TYPE_ELEMENT,
- G_PARAM_READWRITE));
+ g_param_spec_object ("control_valve",
+ NULL,
+ NULL,
+ GST_TYPE_ELEMENT,
+ G_PARAM_READWRITE));
}
diff --git a/libcheese/cheese-effect.h b/libcheese/cheese-effect.h
index e736c46..77f1c13 100644
--- a/libcheese/cheese-effect.h
+++ b/libcheese/cheese-effect.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef _CHEESE_EFFECT_H_
#define _CHEESE_EFFECT_H_
diff --git a/src/cheese-countdown.vala b/src/cheese-countdown.vala
index 01de967..018528e 100644
--- a/src/cheese-countdown.vala
+++ b/src/cheese-countdown.vala
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ * Copyright © 2010 daniel g. siegel <dgsiegel gnome org>
+ * Copyright © 2008 Filippo Argiolas <filippo argiolas gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
using GLib;
using Clutter;
diff --git a/src/cheese-effects-manager.vala b/src/cheese-effects-manager.vala
index 6c26ca6..46b2493 100644
--- a/src/cheese-effects-manager.vala
+++ b/src/cheese-effects-manager.vala
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ * Copyright © 2010 daniel g. siegel <dgsiegel gnome org>
+ * Copyright © 2008 Filippo Argiolas <filippo argiolas gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
using GLib;
using Gee;
diff --git a/src/cheese-main.vala b/src/cheese-main.vala
index c876b2a..3136b8d 100644
--- a/src/cheese-main.vala
+++ b/src/cheese-main.vala
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ * Copyright © 2010 daniel g. siegel <dgsiegel gnome org>
+ * Copyright © 2008 Filippo Argiolas <filippo argiolas gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
using GLib;
using Gtk;
using Clutter;
diff --git a/src/cheese-preferences.vala b/src/cheese-preferences.vala
index 711ce4b..4251cd6 100644
--- a/src/cheese-preferences.vala
+++ b/src/cheese-preferences.vala
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ * Copyright © 2010 daniel g. siegel <dgsiegel gnome org>
+ * Copyright © 2008 Filippo Argiolas <filippo argiolas gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
using Gtk;
internal class Cheese.PreferencesDialog : GLib.Object
diff --git a/src/cheese-window.vala b/src/cheese-window.vala
index 70a7a35..02ff42e 100644
--- a/src/cheese-window.vala
+++ b/src/cheese-window.vala
@@ -1,3 +1,24 @@
+/*
+ * Copyright © 2010 Yuvaraj Pandian <yuvipanda gmail com>
+ * Copyright © 2010 daniel g. siegel <dgsiegel gnome org>
+ * Copyright © 2008 Filippo Argiolas <filippo argiolas gmail com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
using Gtk;
using Gdk;
using GtkClutter;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]