Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gcompris
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2009-03-15 22:52:31 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2009-03-15 22:52:31 (GMT)
commit30c5b6b29ee009657402d006ab8debde75e58fac (patch)
treea66757ed6a3a13480b0b88cb0dbb7c39901fbcec /src/gcompris
parent0caf1a7d6c871e7307b80934ae6e69ddceb23e98 (diff)
cleanup, removed Timestamps in file headers
svn path=/trunk/; revision=3778
Diffstat (limited to 'src/gcompris')
-rw-r--r--src/gcompris/about.c2
-rw-r--r--src/gcompris/about.h2
-rw-r--r--src/gcompris/anim.c2
-rw-r--r--src/gcompris/anim.h2
-rw-r--r--src/gcompris/bar.c2
-rw-r--r--src/gcompris/board_config.h4
-rw-r--r--src/gcompris/bonus.c2
-rw-r--r--src/gcompris/bonus.h2
-rw-r--r--src/gcompris/dialog.c2
-rw-r--r--src/gcompris/file_selector.c2
-rw-r--r--src/gcompris/gc_core.h2
-rw-r--r--src/gcompris/gc_net.h2
-rw-r--r--src/gcompris/gcompris-board.h2
-rw-r--r--src/gcompris/gcompris.h2
-rw-r--r--src/gcompris/gcompris_alphabeta.c2
-rw-r--r--src/gcompris/gcompris_alphabeta.h2
-rw-r--r--src/gcompris/gcompris_config.h2
-rw-r--r--src/gcompris/gcompris_confirm.c2
-rw-r--r--src/gcompris/gcompris_db.h2
-rw-r--r--src/gcompris/gcompris_im.c2
-rw-r--r--src/gcompris/gcompris_im.h2
-rw-r--r--src/gcompris/images_selector.c2
-rw-r--r--src/gcompris/log.c2
-rw-r--r--src/gcompris/menu.c2
-rw-r--r--src/gcompris/plugin.h2
-rw-r--r--src/gcompris/profile.c2
-rw-r--r--src/gcompris/profile.h2
-rw-r--r--src/gcompris/properties.c2
-rw-r--r--src/gcompris/properties.h2
-rw-r--r--src/gcompris/score.c2
-rw-r--r--src/gcompris/score.h2
-rw-r--r--src/gcompris/soundutil.h2
-rw-r--r--src/gcompris/timer.c2
-rw-r--r--src/gcompris/timer.h2
34 files changed, 1 insertions, 69 deletions
diff --git a/src/gcompris/about.c b/src/gcompris/about.c
index 5fb55a2..e97dd47 100644
--- a/src/gcompris/about.c
+++ b/src/gcompris/about.c
@@ -1,7 +1,5 @@
/* gcompris - about.c
*
- * Time-stamp: <2007-08-22 01:21:23 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/about.h b/src/gcompris/about.h
index d9e5259..31375bc 100644
--- a/src/gcompris/about.h
+++ b/src/gcompris/about.h
@@ -1,7 +1,5 @@
/* GCompris -- about.h
*
- * Time-stamp: <2007-08-22 01:21:19 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/anim.c b/src/gcompris/anim.c
index 1178c97..9d3ab15 100644
--- a/src/gcompris/anim.c
+++ b/src/gcompris/anim.c
@@ -1,7 +1,5 @@
/* gcompris - anim.c
*
- * Time-stamp: <2007-08-22 01:21:27 bruno>
- *
* Copyright (C) 2005 Joe Neeman
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/anim.h b/src/gcompris/anim.h
index 5023f11..f0f27ee 100644
--- a/src/gcompris/anim.h
+++ b/src/gcompris/anim.h
@@ -1,7 +1,5 @@
/* gcompris - anim.h
*
- * Time-stamp: <2007-08-22 01:21:20 bruno>
- *
* Copyright (C) 2000 Joe Neeman
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/bar.c b/src/gcompris/bar.c
index 41f1556..609fa2f 100644
--- a/src/gcompris/bar.c
+++ b/src/gcompris/bar.c
@@ -1,7 +1,5 @@
/* gcompris - bar.c
*
- * Time-stamp: <2007-08-22 01:21:25 bruno>
- *
* Copyright (C) 2000-2003 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/board_config.h b/src/gcompris/board_config.h
index 015ab05..684fd9f 100644
--- a/src/gcompris/board_config.h
+++ b/src/gcompris/board_config.h
@@ -1,7 +1,5 @@
/* gcompris - board_config.h
*
- * Time-stamp: <2007-08-22 01:21:28 bruno>
- *
* Copyright (C) 2001 Pascal Georges
*
* This program is free software; you can redistribute it and/or modify
@@ -25,7 +23,7 @@
/* the callback type */
typedef void (*GcomprisConfCallback) (GHashTable *table);
-typedef struct
+typedef struct
{
GtkWindow *conf_window;
GtkVBox *main_conf_box;
diff --git a/src/gcompris/bonus.c b/src/gcompris/bonus.c
index 966a136..46613c1 100644
--- a/src/gcompris/bonus.c
+++ b/src/gcompris/bonus.c
@@ -1,7 +1,5 @@
/* gcompris - bonus.c
*
- * Time-stamp: <2007-08-22 01:20:04 bruno>
- *
* Copyright (C) 2001 Pascal George
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/bonus.h b/src/gcompris/bonus.h
index a01b5eb..daff13b 100644
--- a/src/gcompris/bonus.h
+++ b/src/gcompris/bonus.h
@@ -1,7 +1,5 @@
/* gcompris - bonus.h
*
- * Time-stamp: <2007-08-22 01:21:28 bruno>
- *
* Copyright (C) 2001 Pascal Georges
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/dialog.c b/src/gcompris/dialog.c
index a1f9077..7f5cff6 100644
--- a/src/gcompris/dialog.c
+++ b/src/gcompris/dialog.c
@@ -1,7 +1,5 @@
/* gcompris - dialog.c
*
- * Time-stamp: <2007-08-22 01:21:28 bruno>
- *
* Copyright (C) 2000-2006 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/file_selector.c b/src/gcompris/file_selector.c
index ee41fe9..5edcf28 100644
--- a/src/gcompris/file_selector.c
+++ b/src/gcompris/file_selector.c
@@ -1,7 +1,5 @@
/* gcompris - file_selector.c
*
- * Time-stamp: <2007-08-22 01:21:24 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gc_core.h b/src/gcompris/gc_core.h
index e88d51d..08ba78b 100644
--- a/src/gcompris/gc_core.h
+++ b/src/gcompris/gc_core.h
@@ -1,7 +1,5 @@
/* gcompris - gc_core.h
*
- * Time-stamp: <2007-08-22 01:21:22 bruno>
- *
* Copyright (C) 2006 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gc_net.h b/src/gcompris/gc_net.h
index af0117c..ed68082 100644
--- a/src/gcompris/gc_net.h
+++ b/src/gcompris/gc_net.h
@@ -1,7 +1,5 @@
/* gcompris - gc_net.h
*
- * Time-stamp: <2007-08-22 01:21:21 bruno>
- *
* Copyright (C) 2006 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris-board.h b/src/gcompris/gcompris-board.h
index 69e121a..f734678 100644
--- a/src/gcompris/gcompris-board.h
+++ b/src/gcompris/gcompris-board.h
@@ -1,7 +1,5 @@
/* gcompris - gcompris-board.h
*
- * Time-stamp: <2007-08-22 01:21:22 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris.h b/src/gcompris/gcompris.h
index cbfaf13..11557e5 100644
--- a/src/gcompris/gcompris.h
+++ b/src/gcompris/gcompris.h
@@ -1,7 +1,5 @@
/* gcompris - gcompris.h
*
- * Time-stamp: <2007-08-22 01:21:24 bruno>
- *
* Copyright (C) 2000,2001,2002 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_alphabeta.c b/src/gcompris/gcompris_alphabeta.c
index 01eda5a..886f436 100644
--- a/src/gcompris/gcompris_alphabeta.c
+++ b/src/gcompris/gcompris_alphabeta.c
@@ -1,7 +1,5 @@
/* gcompris - gcompris_alphabeta.c
*
- * Time-stamp: <2007-08-22 01:21:26 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_alphabeta.h b/src/gcompris/gcompris_alphabeta.h
index 20640d4..4ee51c8 100644
--- a/src/gcompris/gcompris_alphabeta.h
+++ b/src/gcompris/gcompris_alphabeta.h
@@ -1,7 +1,5 @@
/* gcompris - gcompris_alphabeta.h
*
- * Time-stamp: <2007-08-22 01:21:29 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_config.h b/src/gcompris/gcompris_config.h
index 0d0af38..e427f44 100644
--- a/src/gcompris/gcompris_config.h
+++ b/src/gcompris/gcompris_config.h
@@ -1,7 +1,5 @@
/* GCompris -- config.h
*
- * Time-stamp: <2007-08-22 01:21:23 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_confirm.c b/src/gcompris/gcompris_confirm.c
index 2b1568f..2fa74ed 100644
--- a/src/gcompris/gcompris_confirm.c
+++ b/src/gcompris/gcompris_confirm.c
@@ -1,7 +1,5 @@
/* gcompris - gc_confirm_box.c
*
- * Time-stamp: <2007-08-22 01:21:29 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_db.h b/src/gcompris/gcompris_db.h
index 86e536a..d70e3f8 100644
--- a/src/gcompris/gcompris_db.h
+++ b/src/gcompris/gcompris_db.h
@@ -1,7 +1,5 @@
/* gcompris - gcompris_db.h
*
- * Time-stamp: <2007-08-22 01:21:18 bruno>
- *
* Copyright (C) 2005 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_im.c b/src/gcompris/gcompris_im.c
index 5c3ad49..65f8f1f 100644
--- a/src/gcompris/gcompris_im.c
+++ b/src/gcompris/gcompris_im.c
@@ -1,7 +1,5 @@
/* gcompris - gcompris_im.c
*
- * Time-stamp: <2007-08-22 01:21:19 bruno>
- *
* Copyright (C) 2000,2003 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/gcompris_im.h b/src/gcompris/gcompris_im.h
index 96455e3..2813b6d 100644
--- a/src/gcompris/gcompris_im.h
+++ b/src/gcompris/gcompris_im.h
@@ -1,7 +1,5 @@
/* gcompris - gcompris_im.h
*
- * Time-stamp: <2007-08-22 01:21:25 bruno>
- *
* Copyright (C) 2005 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/images_selector.c b/src/gcompris/images_selector.c
index 3d5e751..426f281 100644
--- a/src/gcompris/images_selector.c
+++ b/src/gcompris/images_selector.c
@@ -1,7 +1,5 @@
/* gcompris - images_selector.c
*
- * Time-stamp: <2007-08-22 01:21:19 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/log.c b/src/gcompris/log.c
index e4b1dc7..0927380 100644
--- a/src/gcompris/log.c
+++ b/src/gcompris/log.c
@@ -1,7 +1,5 @@
/* gcompris - log.c
*
- * Time-stamp: <2007-08-22 01:21:27 bruno>
- *
* Copyright (C) 2004 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/menu.c b/src/gcompris/menu.c
index 19887b2..a88c9eb 100644
--- a/src/gcompris/menu.c
+++ b/src/gcompris/menu.c
@@ -1,7 +1,5 @@
/* gcompris - menu.c
*
- * Time-stamp: <2007-08-22 01:21:09 bruno>
- *
* Copyright (C) 2000-2006 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/plugin.h b/src/gcompris/plugin.h
index 6357a2f..adc1f3a 100644
--- a/src/gcompris/plugin.h
+++ b/src/gcompris/plugin.h
@@ -1,7 +1,5 @@
/* gcompris - plugin.h
*
- * Time-stamp: <2007-08-22 01:20:57 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/profile.c b/src/gcompris/profile.c
index 50a4a5f..cb45339 100644
--- a/src/gcompris/profile.c
+++ b/src/gcompris/profile.c
@@ -1,7 +1,5 @@
/* gcompris - profile.c
*
- * Time-stamp: <2007-08-22 01:21:26 bruno>
- *
* Copyright (C) 2005 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/profile.h b/src/gcompris/profile.h
index 057c3aa..c4df56c 100644
--- a/src/gcompris/profile.h
+++ b/src/gcompris/profile.h
@@ -1,7 +1,5 @@
/* gcompris - profile.h
*
- * Time-stamp: <2007-08-22 01:21:22 bruno>
- *
* Copyright (C) 2005 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/properties.c b/src/gcompris/properties.c
index 045ead6..c17bf9a 100644
--- a/src/gcompris/properties.c
+++ b/src/gcompris/properties.c
@@ -1,7 +1,5 @@
/* gcompris - properties.c
*
- * Time-stamp: <2007-08-22 01:21:18 bruno>
- *
* Copyright (C) 2000,2003 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/properties.h b/src/gcompris/properties.h
index 03188ab..a406dcf 100644
--- a/src/gcompris/properties.h
+++ b/src/gcompris/properties.h
@@ -1,7 +1,5 @@
/* gcompris - properties.h
*
- * Time-stamp: <2007-08-22 01:21:25 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/score.c b/src/gcompris/score.c
index 0e121c9..b2da2c8 100644
--- a/src/gcompris/score.c
+++ b/src/gcompris/score.c
@@ -1,7 +1,5 @@
/* gcompris - score.c
*
- * Time-stamp: <2007-08-22 01:21:29 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/score.h b/src/gcompris/score.h
index a7e9328..d17ca89 100644
--- a/src/gcompris/score.h
+++ b/src/gcompris/score.h
@@ -1,7 +1,5 @@
/* gcompris - bonus.h
*
- * Time-stamp: <2007-08-22 01:21:27 bruno>
- *
* Copyright (C) 2001 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/soundutil.h b/src/gcompris/soundutil.h
index f4e7d8f..05eadaf 100644
--- a/src/gcompris/soundutil.h
+++ b/src/gcompris/soundutil.h
@@ -1,7 +1,5 @@
/* gcompris - gameutil.h
*
- * Time-stamp: <2007-08-22 01:21:22 bruno>
- *
* Copyright (C) 2000 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/timer.c b/src/gcompris/timer.c
index e995aa3..4883d08 100644
--- a/src/gcompris/timer.c
+++ b/src/gcompris/timer.c
@@ -1,7 +1,5 @@
/* gcompris - timer.c
*
- * Time-stamp: <2007-08-22 01:21:26 bruno>
- *
* Copyright (C) 2002 Bruno coudoin
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/gcompris/timer.h b/src/gcompris/timer.h
index afe85aa..3cbb85d 100644
--- a/src/gcompris/timer.h
+++ b/src/gcompris/timer.h
@@ -1,7 +1,5 @@
/* gcompris - timer.h
*
- * Time-stamp: <2007-08-22 01:21:26 bruno>
- *
* Copyright (C) 2001 Pascal Georges
*
* This program is free software; you can redistribute it and/or modify