From 2d0e99688715a7bb9d924d8c2ac28a40f9237efd Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 27 Apr 2020 23:25:14 -0700 Subject: [PATCH] ui: Add missing file copyright headers --- ui/xemu-os-utils-linux.c | 19 +++++++++++++++++++ ui/xemu-os-utils-macos.m | 19 +++++++++++++++++++ ui/xemu-os-utils-windows.c | 19 +++++++++++++++++++ ui/xemu-os-utils.h | 19 +++++++++++++++++++ ui/xemu-reporting.cc | 21 +++++++++++++++++++++ 5 files changed, 97 insertions(+) diff --git a/ui/xemu-os-utils-linux.c b/ui/xemu-os-utils-linux.c index 50e5479d79..f2038c88eb 100644 --- a/ui/xemu-os-utils-linux.c +++ b/ui/xemu-os-utils-linux.c @@ -1,3 +1,22 @@ +/* + * OS-specific Helpers + * + * Copyright (C) 2020 Matt Borgerson + * + * 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 . + */ + #include "xemu-os-utils.h" #include #include diff --git a/ui/xemu-os-utils-macos.m b/ui/xemu-os-utils-macos.m index 829a8c81cf..de93130a7b 100644 --- a/ui/xemu-os-utils-macos.m +++ b/ui/xemu-os-utils-macos.m @@ -1,3 +1,22 @@ +/* + * OS-specific Helpers + * + * Copyright (C) 2020 Matt Borgerson + * + * 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 . + */ + #import #import #include "xemu-os-utils.h" diff --git a/ui/xemu-os-utils-windows.c b/ui/xemu-os-utils-windows.c index a8f7d09a04..0202dee2a0 100644 --- a/ui/xemu-os-utils-windows.c +++ b/ui/xemu-os-utils-windows.c @@ -1,3 +1,22 @@ +/* + * OS-specific Helpers + * + * Copyright (C) 2020 Matt Borgerson + * + * 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 . + */ + #include "xemu-os-utils.h" #include diff --git a/ui/xemu-os-utils.h b/ui/xemu-os-utils.h index cb7afdef05..46a4925f18 100644 --- a/ui/xemu-os-utils.h +++ b/ui/xemu-os-utils.h @@ -1,3 +1,22 @@ +/* + * OS-specific Helpers + * + * Copyright (C) 2020 Matt Borgerson + * + * 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 . + */ + #ifndef XEMU_OS_UTILS_H #define XEMU_OS_UTILS_H diff --git a/ui/xemu-reporting.cc b/ui/xemu-reporting.cc index 9b0ef3d245..fb09447162 100644 --- a/ui/xemu-reporting.cc +++ b/ui/xemu-reporting.cc @@ -1,3 +1,24 @@ +/* + * xemu Reporting + * + * Title compatibility and bug report submission. + * + * Copyright (C) 2020 Matt Borgerson + * + * 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 . + */ + #include #include #include