[gnome-photos] Add an extra header specifying where the code originated from



commit 80f220032455cd7acdd0c9af18b5d3d7a30332bd
Author: Debarshi Ray <debarshir gnome org>
Date:   Sat Aug 18 23:28:40 2012 +0200

    Add an extra header specifying where the code originated from
    
    Most of the code is based on what was originally written in JavaScript
    for Documents. Some portions of Eye of GNOME code has also been
    adapted.

 src/photos-application.c                |    4 ++++
 src/photos-application.h                |    4 ++++
 src/photos-base-item.c                  |    4 ++++
 src/photos-base-item.h                  |    4 ++++
 src/photos-base-manager.c               |    4 ++++
 src/photos-base-manager.h               |    4 ++++
 src/photos-collection-manager.c         |    4 ++++
 src/photos-collection-manager.h         |    4 ++++
 src/photos-embed.c                      |    4 ++++
 src/photos-embed.h                      |    4 ++++
 src/photos-error-box.c                  |    4 ++++
 src/photos-error-box.h                  |    4 ++++
 src/photos-filterable.c                 |    4 ++++
 src/photos-filterable.h                 |    4 ++++
 src/photos-item-manager.c               |    4 ++++
 src/photos-item-manager.h               |    4 ++++
 src/photos-item-model.c                 |    4 ++++
 src/photos-item-model.h                 |    4 ++++
 src/photos-load-more-button.c           |    4 ++++
 src/photos-load-more-button.h           |    4 ++++
 src/photos-local-item.c                 |    4 ++++
 src/photos-local-item.h                 |    4 ++++
 src/photos-main-toolbar.c               |    4 ++++
 src/photos-main-toolbar.h               |    4 ++++
 src/photos-main-window.c                |    4 ++++
 src/photos-main-window.h                |    4 ++++
 src/photos-main.c                       |    4 ++++
 src/photos-mode-controller.c            |    4 ++++
 src/photos-mode-controller.h            |    4 ++++
 src/photos-offset-controller.c          |    4 ++++
 src/photos-offset-controller.h          |    4 ++++
 src/photos-organize-collection-dialog.c |    4 ++++
 src/photos-organize-collection-dialog.h |    4 ++++
 src/photos-organize-collection-model.c  |    4 ++++
 src/photos-organize-collection-model.h  |    4 ++++
 src/photos-organize-collection-view.c   |    4 ++++
 src/photos-organize-collection-view.h   |    4 ++++
 src/photos-query-builder.c              |    4 ++++
 src/photos-query-builder.h              |    4 ++++
 src/photos-query.c                      |    4 ++++
 src/photos-query.h                      |    4 ++++
 src/photos-search-type-manager.c        |    4 ++++
 src/photos-search-type-manager.h        |    4 ++++
 src/photos-search-type.c                |    4 ++++
 src/photos-search-type.h                |    4 ++++
 src/photos-selection-controller.c       |    4 ++++
 src/photos-selection-controller.h       |    4 ++++
 src/photos-selection-toolbar.c          |    4 ++++
 src/photos-selection-toolbar.h          |    4 ++++
 src/photos-settings.c                   |    4 ++++
 src/photos-settings.h                   |    4 ++++
 src/photos-single-item-job.c            |    4 ++++
 src/photos-single-item-job.h            |    4 ++++
 src/photos-source-manager.c             |    4 ++++
 src/photos-source-manager.h             |    4 ++++
 src/photos-source.c                     |    4 ++++
 src/photos-source.h                     |    4 ++++
 src/photos-spinner-box.c                |    4 ++++
 src/photos-spinner-box.h                |    4 ++++
 src/photos-tracker-change-event.c       |    4 ++++
 src/photos-tracker-change-event.h       |    4 ++++
 src/photos-tracker-change-monitor.c     |    4 ++++
 src/photos-tracker-change-monitor.h     |    4 ++++
 src/photos-tracker-controller.c         |    4 ++++
 src/photos-tracker-controller.h         |    4 ++++
 src/photos-tracker-queue.c              |    4 ++++
 src/photos-tracker-queue.h              |    4 ++++
 src/photos-utils.c                      |    4 +++-
 src/photos-utils.h                      |    4 +++-
 src/photos-view-container.c             |    4 ++++
 src/photos-view-container.h             |    4 ++++
 71 files changed, 282 insertions(+), 2 deletions(-)
---
diff --git a/src/photos-application.c b/src/photos-application.c
index ff56f8e..542f38c 100644
--- a/src/photos-application.c
+++ b/src/photos-application.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-application.h b/src/photos-application.h
index 8f4c6c4..6b0c30e 100644
--- a/src/photos-application.h
+++ b/src/photos-application.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_APPLICATION_H
 #define PHOTOS_APPLICATION_H
 
diff --git a/src/photos-base-item.c b/src/photos-base-item.c
index fd2c573..4d3a3e8 100644
--- a/src/photos-base-item.c
+++ b/src/photos-base-item.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-base-item.h b/src/photos-base-item.h
index fa10796..8574d26 100644
--- a/src/photos-base-item.h
+++ b/src/photos-base-item.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_BASE_ITEM_H
 #define PHOTOS_BASE_ITEM_H
 
diff --git a/src/photos-base-manager.c b/src/photos-base-manager.c
index 662b68c..b2e33bd 100644
--- a/src/photos-base-manager.c
+++ b/src/photos-base-manager.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-base-manager.h b/src/photos-base-manager.h
index 847423b..709c30b 100644
--- a/src/photos-base-manager.h
+++ b/src/photos-base-manager.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_BASE_MANAGER_H
 #define PHOTOS_BASE_MANAGER_H
 
diff --git a/src/photos-collection-manager.c b/src/photos-collection-manager.c
index bfd39a6..22f070f 100644
--- a/src/photos-collection-manager.c
+++ b/src/photos-collection-manager.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-collection-manager.h b/src/photos-collection-manager.h
index d0e5304..7d7a92f 100644
--- a/src/photos-collection-manager.h
+++ b/src/photos-collection-manager.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_COLLECTION_MANAGER_H
 #define PHOTOS_COLLECTION_MANAGER_H
 
diff --git a/src/photos-embed.c b/src/photos-embed.c
index d801f0f..1753163 100644
--- a/src/photos-embed.c
+++ b/src/photos-embed.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-embed.h b/src/photos-embed.h
index efdc4a7..eb96180 100644
--- a/src/photos-embed.h
+++ b/src/photos-embed.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_EMBED_H
 #define PHOTOS_EMBED_H
 
diff --git a/src/photos-error-box.c b/src/photos-error-box.c
index b93c8b8..c95929b 100644
--- a/src/photos-error-box.c
+++ b/src/photos-error-box.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-error-box.h b/src/photos-error-box.h
index 54d516a..a61e2c3 100644
--- a/src/photos-error-box.h
+++ b/src/photos-error-box.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_ERROR_BOX_H
 #define PHOTOS_ERROR_BOX_H
 
diff --git a/src/photos-filterable.c b/src/photos-filterable.c
index 86bd7a1..198e0e3 100644
--- a/src/photos-filterable.c
+++ b/src/photos-filterable.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-filterable.h b/src/photos-filterable.h
index 9b19ce2..0909036 100644
--- a/src/photos-filterable.h
+++ b/src/photos-filterable.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_FILTERABLE_H
 #define PHOTOS_FILTERABLE_H
 
diff --git a/src/photos-item-manager.c b/src/photos-item-manager.c
index fe44988..5610998 100644
--- a/src/photos-item-manager.c
+++ b/src/photos-item-manager.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-item-manager.h b/src/photos-item-manager.h
index b53121f..44494c7 100644
--- a/src/photos-item-manager.h
+++ b/src/photos-item-manager.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_ITEM_MANAGER_H
 #define PHOTOS_ITEM_MANAGER_H
 
diff --git a/src/photos-item-model.c b/src/photos-item-model.c
index c9505b9..f863957 100644
--- a/src/photos-item-model.c
+++ b/src/photos-item-model.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-item-model.h b/src/photos-item-model.h
index f593ec2..2193bc2 100644
--- a/src/photos-item-model.h
+++ b/src/photos-item-model.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_ITEM_MODEL_H
 #define PHOTOS_ITEM_MODEL_H
 
diff --git a/src/photos-load-more-button.c b/src/photos-load-more-button.c
index 423313d..da430fa 100644
--- a/src/photos-load-more-button.c
+++ b/src/photos-load-more-button.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-load-more-button.h b/src/photos-load-more-button.h
index 0708f41..9d1719a 100644
--- a/src/photos-load-more-button.h
+++ b/src/photos-load-more-button.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_LOAD_MORE_BUTTON_H
 #define PHOTOS_LOAD_MORE_BUTTON_H
 
diff --git a/src/photos-local-item.c b/src/photos-local-item.c
index 377a8fa..3158e52 100644
--- a/src/photos-local-item.c
+++ b/src/photos-local-item.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-local-item.h b/src/photos-local-item.h
index 26e5b25..fa62510 100644
--- a/src/photos-local-item.h
+++ b/src/photos-local-item.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_LOCAL_ITEM_H
 #define PHOTOS_LOCAL_ITEM_H
 
diff --git a/src/photos-main-toolbar.c b/src/photos-main-toolbar.c
index b13ff57..ffec30e 100644
--- a/src/photos-main-toolbar.c
+++ b/src/photos-main-toolbar.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-main-toolbar.h b/src/photos-main-toolbar.h
index 90174b7..dfae22a 100644
--- a/src/photos-main-toolbar.h
+++ b/src/photos-main-toolbar.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_MAIN_TOOLBAR_H
 #define PHOTOS_MAIN_TOOLBAR_H
 
diff --git a/src/photos-main-window.c b/src/photos-main-window.c
index 3ad4712..74dfa8a 100644
--- a/src/photos-main-window.c
+++ b/src/photos-main-window.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-main-window.h b/src/photos-main-window.h
index 6115a69..f790e1e 100644
--- a/src/photos-main-window.h
+++ b/src/photos-main-window.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_MAIN_WINDOW_H
 #define PHOTOS_MAIN_WINDOW_H
 
diff --git a/src/photos-main.c b/src/photos-main.c
index 8068e6b..0220931 100644
--- a/src/photos-main.c
+++ b/src/photos-main.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-mode-controller.c b/src/photos-mode-controller.c
index d8592b2..79d056b 100644
--- a/src/photos-mode-controller.c
+++ b/src/photos-mode-controller.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-mode-controller.h b/src/photos-mode-controller.h
index 898bed3..a867b3e 100644
--- a/src/photos-mode-controller.h
+++ b/src/photos-mode-controller.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_MODE_CONTROLLER_H
 #define PHOTOS_MODE_CONTROLLER_H
 
diff --git a/src/photos-offset-controller.c b/src/photos-offset-controller.c
index 2beafd5..1ddac4d 100644
--- a/src/photos-offset-controller.c
+++ b/src/photos-offset-controller.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-offset-controller.h b/src/photos-offset-controller.h
index 26ac9e1..6ca4b48 100644
--- a/src/photos-offset-controller.h
+++ b/src/photos-offset-controller.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_OFFSET_CONTROLLER_H
 #define PHOTOS_OFFSET_CONTROLLER_H
 
diff --git a/src/photos-organize-collection-dialog.c b/src/photos-organize-collection-dialog.c
index 991f8f2..849ddea 100644
--- a/src/photos-organize-collection-dialog.c
+++ b/src/photos-organize-collection-dialog.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-organize-collection-dialog.h b/src/photos-organize-collection-dialog.h
index 5e117b4..fd48449 100644
--- a/src/photos-organize-collection-dialog.h
+++ b/src/photos-organize-collection-dialog.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_ORGANIZE_COLLECTION_DIALOG_H
 #define PHOTOS_ORGANIZE_COLLECTION_DIALOG_H
 
diff --git a/src/photos-organize-collection-model.c b/src/photos-organize-collection-model.c
index b1b5154..752042b 100644
--- a/src/photos-organize-collection-model.c
+++ b/src/photos-organize-collection-model.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-organize-collection-model.h b/src/photos-organize-collection-model.h
index 2ebd761..22b046c 100644
--- a/src/photos-organize-collection-model.h
+++ b/src/photos-organize-collection-model.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_ORGANIZE_COLLECTION_MODEL_H
 #define PHOTOS_ORGANIZE_COLLECTION_MODEL_H
 
diff --git a/src/photos-organize-collection-view.c b/src/photos-organize-collection-view.c
index a2522f1..a8ced2b 100644
--- a/src/photos-organize-collection-view.c
+++ b/src/photos-organize-collection-view.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-organize-collection-view.h b/src/photos-organize-collection-view.h
index b541084..32bdb30 100644
--- a/src/photos-organize-collection-view.h
+++ b/src/photos-organize-collection-view.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_ORGANIZE_COLLECTION_VIEW_H
 #define PHOTOS_ORGANIZE_COLLECTION_VIEW_H
 
diff --git a/src/photos-query-builder.c b/src/photos-query-builder.c
index 82ce834..1c9728e 100644
--- a/src/photos-query-builder.c
+++ b/src/photos-query-builder.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-query-builder.h b/src/photos-query-builder.h
index 86c602c..886c72f 100644
--- a/src/photos-query-builder.h
+++ b/src/photos-query-builder.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_QUERY_BUILDER_H
 #define PHOTOS_QUERY_BUILDER_H
 
diff --git a/src/photos-query.c b/src/photos-query.c
index d89a0f1..f4339ee 100644
--- a/src/photos-query.c
+++ b/src/photos-query.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-query.h b/src/photos-query.h
index 42fcaa6..37c0806 100644
--- a/src/photos-query.h
+++ b/src/photos-query.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_QUERY_H
 #define PHOTOS_QUERY_H
 
diff --git a/src/photos-search-type-manager.c b/src/photos-search-type-manager.c
index 92c1402..78ad35f 100644
--- a/src/photos-search-type-manager.c
+++ b/src/photos-search-type-manager.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-search-type-manager.h b/src/photos-search-type-manager.h
index 39c4a8e..39e2c01 100644
--- a/src/photos-search-type-manager.h
+++ b/src/photos-search-type-manager.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SEARCH_TYPE_MANAGER_H
 #define PHOTOS_SEARCH_TYPE_MANAGER_H
 
diff --git a/src/photos-search-type.c b/src/photos-search-type.c
index dd5d4e7..9c04931 100644
--- a/src/photos-search-type.c
+++ b/src/photos-search-type.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-search-type.h b/src/photos-search-type.h
index 75e3867..fdd4283 100644
--- a/src/photos-search-type.h
+++ b/src/photos-search-type.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SEARCH_TYPE_H
 #define PHOTOS_SEARCH_TYPE_H
 
diff --git a/src/photos-selection-controller.c b/src/photos-selection-controller.c
index 9d6083f..55fb2d4 100644
--- a/src/photos-selection-controller.c
+++ b/src/photos-selection-controller.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-selection-controller.h b/src/photos-selection-controller.h
index cdc589e..82d038d 100644
--- a/src/photos-selection-controller.h
+++ b/src/photos-selection-controller.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SELECTION_CONTROLLER_H
 #define PHOTOS_SELECTION_CONTROLLER_H
 
diff --git a/src/photos-selection-toolbar.c b/src/photos-selection-toolbar.c
index 0d603a3..d82fc70 100644
--- a/src/photos-selection-toolbar.c
+++ b/src/photos-selection-toolbar.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-selection-toolbar.h b/src/photos-selection-toolbar.h
index a277b3c..9a432dc 100644
--- a/src/photos-selection-toolbar.h
+++ b/src/photos-selection-toolbar.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SELECTION_TOOLBAR_H
 #define PHOTOS_SELECTION_TOOLBAR_H
 
diff --git a/src/photos-settings.c b/src/photos-settings.c
index 4d229f6..297c3fe 100644
--- a/src/photos-settings.c
+++ b/src/photos-settings.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-settings.h b/src/photos-settings.h
index 553a236..9ec9cb9 100644
--- a/src/photos-settings.h
+++ b/src/photos-settings.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SETTINGS_H
 #define PHOTOS_SETTINGS_H
 
diff --git a/src/photos-single-item-job.c b/src/photos-single-item-job.c
index 1e2d295..d5af657 100644
--- a/src/photos-single-item-job.c
+++ b/src/photos-single-item-job.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-single-item-job.h b/src/photos-single-item-job.h
index e59627f..24e5c6b 100644
--- a/src/photos-single-item-job.h
+++ b/src/photos-single-item-job.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SINGLE_ITEM_JOB_H
 #define PHOTOS_SINGLE_ITEM_JOB_H
 
diff --git a/src/photos-source-manager.c b/src/photos-source-manager.c
index 874420f..0e67208 100644
--- a/src/photos-source-manager.c
+++ b/src/photos-source-manager.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-source-manager.h b/src/photos-source-manager.h
index 8be8524..e7df308 100644
--- a/src/photos-source-manager.h
+++ b/src/photos-source-manager.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SOURCE_MANAGER_H
 #define PHOTOS_SOURCE_MANAGER_H
 
diff --git a/src/photos-source.c b/src/photos-source.c
index 3517597..3ed55a2 100644
--- a/src/photos-source.c
+++ b/src/photos-source.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-source.h b/src/photos-source.h
index baa3eb0..f4df8e5 100644
--- a/src/photos-source.h
+++ b/src/photos-source.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SOURCE_H
 #define PHOTOS_SOURCE_H
 
diff --git a/src/photos-spinner-box.c b/src/photos-spinner-box.c
index 3e90b12..44e9b38 100644
--- a/src/photos-spinner-box.c
+++ b/src/photos-spinner-box.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-spinner-box.h b/src/photos-spinner-box.h
index ea78ff3..5eb57fa 100644
--- a/src/photos-spinner-box.h
+++ b/src/photos-spinner-box.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_SPINNER_BOX_H
 #define PHOTOS_SPINNER_BOX_H
 
diff --git a/src/photos-tracker-change-event.c b/src/photos-tracker-change-event.c
index 04bed94..d071df2 100644
--- a/src/photos-tracker-change-event.c
+++ b/src/photos-tracker-change-event.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-tracker-change-event.h b/src/photos-tracker-change-event.h
index 0cc31fd..387893b 100644
--- a/src/photos-tracker-change-event.h
+++ b/src/photos-tracker-change-event.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_TRACKER_CHANGE_EVENT_H
 #define PHOTOS_TRACKER_CHANGE_EVENT_H
 
diff --git a/src/photos-tracker-change-monitor.c b/src/photos-tracker-change-monitor.c
index 24f1f8c..06dfad9 100644
--- a/src/photos-tracker-change-monitor.c
+++ b/src/photos-tracker-change-monitor.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-tracker-change-monitor.h b/src/photos-tracker-change-monitor.h
index 2946c6c..e65c77c 100644
--- a/src/photos-tracker-change-monitor.h
+++ b/src/photos-tracker-change-monitor.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_TRACKER_CHANGE_MONITOR_H
 #define PHOTOS_TRACKER_CHANGE_MONITOR_H
 
diff --git a/src/photos-tracker-controller.c b/src/photos-tracker-controller.c
index 1f04042..3f052db 100644
--- a/src/photos-tracker-controller.c
+++ b/src/photos-tracker-controller.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-tracker-controller.h b/src/photos-tracker-controller.h
index 358755b..b56ed02 100644
--- a/src/photos-tracker-controller.h
+++ b/src/photos-tracker-controller.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_TRACKER_CONTROLLER_H
 #define PHOTOS_TRACKER_CONTROLLER_H
 
diff --git a/src/photos-tracker-queue.c b/src/photos-tracker-queue.c
index 37b40d7..909f629 100644
--- a/src/photos-tracker-queue.c
+++ b/src/photos-tracker-queue.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-tracker-queue.h b/src/photos-tracker-queue.h
index ecbe832..4d655ed 100644
--- a/src/photos-tracker-queue.h
+++ b/src/photos-tracker-queue.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_TRACKER_QUEUE_H
 #define PHOTOS_TRACKER_QUEUE_H
 
diff --git a/src/photos-utils.c b/src/photos-utils.c
index 9bb6738..9c5701f 100644
--- a/src/photos-utils.c
+++ b/src/photos-utils.c
@@ -18,7 +18,9 @@
  * 02110-1301, USA.
  */
 
-/* Based on code by the Documents team.
+/* Based on code from:
+ *   + Documents
+ *   + Eye of GNOME
  */
 
 
diff --git a/src/photos-utils.h b/src/photos-utils.h
index 5091f17..2a10d93 100644
--- a/src/photos-utils.h
+++ b/src/photos-utils.h
@@ -18,7 +18,9 @@
  * 02110-1301, USA.
  */
 
-/* Based on code by the Documents team.
+/* Based on code from:
+ *   + Documents
+ *   + Eye of GNOME
  */
 
 #ifndef PHOTOS_UTILS_H
diff --git a/src/photos-view-container.c b/src/photos-view-container.c
index e22410e..69a9c02 100644
--- a/src/photos-view-container.c
+++ b/src/photos-view-container.c
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 
 #include "config.h"
 
diff --git a/src/photos-view-container.h b/src/photos-view-container.h
index b8d002a..4c4eae8 100644
--- a/src/photos-view-container.h
+++ b/src/photos-view-container.h
@@ -18,6 +18,10 @@
  * 02110-1301, USA.
  */
 
+/* Based on code from:
+ *   + Documents
+ */
+
 #ifndef PHOTOS_VIEW_CONTAINER_H
 #define PHOTOS_VIEW_CONTAINER_H
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]