Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2022-05-03 19:05:26 +0300
committerHannah von Reth <vonreth@kde.org>2022-05-04 18:20:09 +0300
commit4fcaca3c39afac3ec7064d5d7f02c3d4beb1ca32 (patch)
tree21624491dc2e9a096ec028097673e533232af2ad /src/gui/newwizard
parent93f8348c53e7b6671544ab160ae6a76d7c1ea40b (diff)
Add missing copyright headers
Diffstat (limited to 'src/gui/newwizard')
-rw-r--r--src/gui/newwizard/jobs/resolveurljobfactory.h14
-rw-r--r--src/gui/newwizard/pages/abstractsetupwizardpage.cpp14
-rw-r--r--src/gui/newwizard/pages/abstractsetupwizardpage.h14
-rw-r--r--src/gui/newwizard/pages/accountconfiguredwizardpage.h14
-rw-r--r--src/gui/newwizard/pages/basiccredentialssetupwizardpage.cpp14
-rw-r--r--src/gui/newwizard/pages/basiccredentialssetupwizardpage.h14
-rw-r--r--src/gui/newwizard/pages/oauthcredentialssetupwizardpage.cpp14
-rw-r--r--src/gui/newwizard/pages/oauthcredentialssetupwizardpage.h14
-rw-r--r--src/gui/newwizard/pages/serverurlsetupwizardpage.h14
-rw-r--r--src/gui/newwizard/pagination.h14
-rw-r--r--src/gui/newwizard/setupwizardaccountbuilder.cpp14
-rw-r--r--src/gui/newwizard/setupwizardaccountbuilder.h14
-rw-r--r--src/gui/newwizard/setupwizardcontroller.h14
-rw-r--r--src/gui/newwizard/setupwizardwindow.h14
-rw-r--r--src/gui/newwizard/syncmode.cpp14
-rw-r--r--src/gui/newwizard/syncmode.h14
16 files changed, 224 insertions, 0 deletions
diff --git a/src/gui/newwizard/jobs/resolveurljobfactory.h b/src/gui/newwizard/jobs/resolveurljobfactory.h
index 1b25c60ec..b10fb3aa3 100644
--- a/src/gui/newwizard/jobs/resolveurljobfactory.h
+++ b/src/gui/newwizard/jobs/resolveurljobfactory.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "abstractcorejob.h"
diff --git a/src/gui/newwizard/pages/abstractsetupwizardpage.cpp b/src/gui/newwizard/pages/abstractsetupwizardpage.cpp
index 295d400d7..25ef6ed44 100644
--- a/src/gui/newwizard/pages/abstractsetupwizardpage.cpp
+++ b/src/gui/newwizard/pages/abstractsetupwizardpage.cpp
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#include "abstractsetupwizardpage.h"
namespace OCC::Wizard {
diff --git a/src/gui/newwizard/pages/abstractsetupwizardpage.h b/src/gui/newwizard/pages/abstractsetupwizardpage.h
index 92fec13e7..0efb6a829 100644
--- a/src/gui/newwizard/pages/abstractsetupwizardpage.h
+++ b/src/gui/newwizard/pages/abstractsetupwizardpage.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include <QWidget>
diff --git a/src/gui/newwizard/pages/accountconfiguredwizardpage.h b/src/gui/newwizard/pages/accountconfiguredwizardpage.h
index 4634b7abe..3a58f3e76 100644
--- a/src/gui/newwizard/pages/accountconfiguredwizardpage.h
+++ b/src/gui/newwizard/pages/accountconfiguredwizardpage.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "abstractsetupwizardpage.h"
diff --git a/src/gui/newwizard/pages/basiccredentialssetupwizardpage.cpp b/src/gui/newwizard/pages/basiccredentialssetupwizardpage.cpp
index b8d174f28..4cf51474a 100644
--- a/src/gui/newwizard/pages/basiccredentialssetupwizardpage.cpp
+++ b/src/gui/newwizard/pages/basiccredentialssetupwizardpage.cpp
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#include "basiccredentialssetupwizardpage.h"
#include "ui_basiccredentialssetupwizardpage.h"
diff --git a/src/gui/newwizard/pages/basiccredentialssetupwizardpage.h b/src/gui/newwizard/pages/basiccredentialssetupwizardpage.h
index 3e5234707..9a34f44a4 100644
--- a/src/gui/newwizard/pages/basiccredentialssetupwizardpage.h
+++ b/src/gui/newwizard/pages/basiccredentialssetupwizardpage.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "abstractsetupwizardpage.h"
diff --git a/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.cpp b/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.cpp
index 0d217556a..0eb4ae167 100644
--- a/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.cpp
+++ b/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.cpp
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#include "oauthcredentialssetupwizardpage.h"
#include "ui_oauthcredentialssetupwizardpage.h"
diff --git a/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.h b/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.h
index b12b73647..443dbe57d 100644
--- a/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.h
+++ b/src/gui/newwizard/pages/oauthcredentialssetupwizardpage.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "abstractsetupwizardpage.h"
diff --git a/src/gui/newwizard/pages/serverurlsetupwizardpage.h b/src/gui/newwizard/pages/serverurlsetupwizardpage.h
index c13552a94..f44e47b64 100644
--- a/src/gui/newwizard/pages/serverurlsetupwizardpage.h
+++ b/src/gui/newwizard/pages/serverurlsetupwizardpage.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "abstractsetupwizardpage.h"
diff --git a/src/gui/newwizard/pagination.h b/src/gui/newwizard/pagination.h
index 5c30e9adc..2ac2216e4 100644
--- a/src/gui/newwizard/pagination.h
+++ b/src/gui/newwizard/pagination.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include <QHBoxLayout>
diff --git a/src/gui/newwizard/setupwizardaccountbuilder.cpp b/src/gui/newwizard/setupwizardaccountbuilder.cpp
index c61705c77..e935028c9 100644
--- a/src/gui/newwizard/setupwizardaccountbuilder.cpp
+++ b/src/gui/newwizard/setupwizardaccountbuilder.cpp
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#include "setupwizardaccountbuilder.h"
#include "gui/accountmanager.h"
diff --git a/src/gui/newwizard/setupwizardaccountbuilder.h b/src/gui/newwizard/setupwizardaccountbuilder.h
index 2f19c1754..959e1b0f9 100644
--- a/src/gui/newwizard/setupwizardaccountbuilder.h
+++ b/src/gui/newwizard/setupwizardaccountbuilder.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "account.h"
diff --git a/src/gui/newwizard/setupwizardcontroller.h b/src/gui/newwizard/setupwizardcontroller.h
index 27cf94b27..5014ebcd9 100644
--- a/src/gui/newwizard/setupwizardcontroller.h
+++ b/src/gui/newwizard/setupwizardcontroller.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "account.h"
diff --git a/src/gui/newwizard/setupwizardwindow.h b/src/gui/newwizard/setupwizardwindow.h
index 319f6da08..8aca7d6e2 100644
--- a/src/gui/newwizard/setupwizardwindow.h
+++ b/src/gui/newwizard/setupwizardwindow.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include "3rdparty/QProgressIndicator/QProgressIndicator.h"
diff --git a/src/gui/newwizard/syncmode.cpp b/src/gui/newwizard/syncmode.cpp
index 63a336a42..74b76c8f5 100644
--- a/src/gui/newwizard/syncmode.cpp
+++ b/src/gui/newwizard/syncmode.cpp
@@ -1,2 +1,16 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
// just a stub so the MOC file can be included somewhere
#include "moc_syncmode.cpp"
diff --git a/src/gui/newwizard/syncmode.h b/src/gui/newwizard/syncmode.h
index b85b8c9e7..a9fa49aa5 100644
--- a/src/gui/newwizard/syncmode.h
+++ b/src/gui/newwizard/syncmode.h
@@ -1,3 +1,17 @@
+/*
+ * Copyright (C) Fabian Müller <fmueller@owncloud.com>
+ *
+ * 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.
+ */
+
#pragma once
#include <QObject>