From 1bd4f92f763e50ebdd1c4f24dd15f5596896d65a Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 8 Jan 2024 19:06:14 -0500 Subject: [PATCH] update copyright year --- LICENSE | 2 +- api/debugadaptertype.cpp | 2 +- api/debuggerapi.h | 2 +- api/debuggercontroller.cpp | 2 +- api/ffi.h | 2 +- api/python/__init__.py | 2 +- api/python/debugadaptertype.py | 2 +- api/python/debuggercontroller.py | 2 +- api/python/generator.cpp | 2 +- api/utility.cpp | 2 +- cli/log.h | 2 +- cli/main.cpp | 2 +- core/adapters/dbgengadapter.cpp | 4 ++-- core/adapters/dbgengadapter.h | 2 +- core/adapters/dbgengttdadapter.h | 2 +- core/adapters/lldbadapter.cpp | 2 +- core/adapters/lldbadapter.h | 2 +- core/debugadapter.cpp | 2 +- core/debugadapter.h | 2 +- core/debugadaptertype.cpp | 2 +- core/debugadaptertype.h | 2 +- core/debugger.cpp | 2 +- core/debuggercommon.h | 2 +- core/debuggercontroller.cpp | 2 +- core/debuggercontroller.h | 2 +- core/debuggerevent.h | 2 +- core/debuggerexceptions.h | 2 +- core/debuggerstate.cpp | 2 +- core/debuggerstate.h | 2 +- core/ffi.cpp | 2 +- core/ffi_global.h | 2 +- core/processview.cpp | 2 +- core/processview.h | 2 +- core/refcountobject.h | 2 +- core/semaphore.cpp | 2 +- core/semaphore.h | 2 +- ui/adaptersettings.cpp | 2 +- ui/adaptersettings.h | 2 +- ui/attachprocess.cpp | 2 +- ui/attachprocess.h | 2 +- ui/breakpointswidget.cpp | 2 +- ui/breakpointswidget.h | 2 +- ui/codedatarenderer.cpp | 2 +- ui/codedatarenderer.h | 2 +- ui/controlswidget.cpp | 2 +- ui/controlswidget.h | 2 +- ui/debugadapterscriptingprovider.cpp | 2 +- ui/debugadapterscriptingprovider.h | 2 +- ui/debuggerwidget.cpp | 2 +- ui/debuggerwidget.h | 2 +- ui/debugserversetting.cpp | 2 +- ui/debugserversetting.h | 2 +- ui/moduleswidget.cpp | 2 +- ui/moduleswidget.h | 2 +- ui/registerswidget.cpp | 2 +- ui/registerswidget.h | 2 +- ui/remoteprocess.cpp | 2 +- ui/remoteprocess.h | 2 +- ui/stackwidget.cpp | 2 +- ui/stackwidget.h | 2 +- ui/statusbar.cpp | 2 +- ui/statusbar.h | 2 +- ui/targetscriptingprovier.cpp | 2 +- ui/targetscriptingprovier.h | 2 +- ui/threadframes.cpp | 2 +- ui/threadframes.h | 2 +- ui/ui.cpp | 2 +- ui/ui.h | 2 +- ui/uinotification.cpp | 2 +- ui/uinotification.h | 2 +- ui/uitypes.h | 2 +- 71 files changed, 72 insertions(+), 72 deletions(-) diff --git a/LICENSE b/LICENSE index a9023c93..af67d90c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/debugadaptertype.cpp b/api/debugadaptertype.cpp index a9b7b79a..51b2fca0 100644 --- a/api/debugadaptertype.cpp +++ b/api/debugadaptertype.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/debuggerapi.h b/api/debuggerapi.h index 1d48cf52..db66e43a 100644 --- a/api/debuggerapi.h +++ b/api/debuggerapi.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/debuggercontroller.cpp b/api/debuggercontroller.cpp index 23bcaaea..eb3e128b 100644 --- a/api/debuggercontroller.cpp +++ b/api/debuggercontroller.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/ffi.h b/api/ffi.h index d104f154..ae0282b2 100644 --- a/api/ffi.h +++ b/api/ffi.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/python/__init__.py b/api/python/__init__.py index cdf4353c..eeda0203 100644 --- a/api/python/__init__.py +++ b/api/python/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2020-2023 Vector 35 Inc. +# Copyright 2020-2024 Vector 35 Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/api/python/debugadaptertype.py b/api/python/debugadaptertype.py index e6309604..ae40125b 100644 --- a/api/python/debugadaptertype.py +++ b/api/python/debugadaptertype.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2020-2023 Vector 35 Inc. +# Copyright 2020-2024 Vector 35 Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/api/python/debuggercontroller.py b/api/python/debuggercontroller.py index f04f087c..d499dfc9 100644 --- a/api/python/debuggercontroller.py +++ b/api/python/debuggercontroller.py @@ -1,5 +1,5 @@ # coding=utf-8 -# Copyright 2020-2023 Vector 35 Inc. +# Copyright 2020-2024 Vector 35 Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/api/python/generator.cpp b/api/python/generator.cpp index 978bb10c..a14cbe95 100644 --- a/api/python/generator.cpp +++ b/api/python/generator.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/api/utility.cpp b/api/utility.cpp index de8fec5d..17b98105 100644 --- a/api/utility.cpp +++ b/api/utility.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cli/log.h b/cli/log.h index 691e5a61..9bed6667 100644 --- a/cli/log.h +++ b/cli/log.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cli/main.cpp b/cli/main.cpp index f994a878..1550b114 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/adapters/dbgengadapter.cpp b/core/adapters/dbgengadapter.cpp index 86498937..9ea3c74b 100644 --- a/core/adapters/dbgengadapter.cpp +++ b/core/adapters/dbgengadapter.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -1596,4 +1596,4 @@ void BinaryNinjaDebugger::InitDbgEngAdapterType() { static LocalDbgEngAdapterType localType; DebugAdapterType::Register(&localType); -} \ No newline at end of file +} diff --git a/core/adapters/dbgengadapter.h b/core/adapters/dbgengadapter.h index dc206397..3b02392c 100644 --- a/core/adapters/dbgengadapter.h +++ b/core/adapters/dbgengadapter.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/adapters/dbgengttdadapter.h b/core/adapters/dbgengttdadapter.h index a3a83960..3f0c38dd 100644 --- a/core/adapters/dbgengttdadapter.h +++ b/core/adapters/dbgengttdadapter.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/adapters/lldbadapter.cpp b/core/adapters/lldbadapter.cpp index 5f3931c7..9d1b5046 100644 --- a/core/adapters/lldbadapter.cpp +++ b/core/adapters/lldbadapter.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/adapters/lldbadapter.h b/core/adapters/lldbadapter.h index af9b861e..4c2c5838 100644 --- a/core/adapters/lldbadapter.h +++ b/core/adapters/lldbadapter.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debugadapter.cpp b/core/debugadapter.cpp index fe85fcce..95e2c7f8 100644 --- a/core/debugadapter.cpp +++ b/core/debugadapter.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debugadapter.h b/core/debugadapter.h index f1a2a013..7341c793 100644 --- a/core/debugadapter.h +++ b/core/debugadapter.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debugadaptertype.cpp b/core/debugadaptertype.cpp index b7c6babb..a05bd2e9 100644 --- a/core/debugadaptertype.cpp +++ b/core/debugadaptertype.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debugadaptertype.h b/core/debugadaptertype.h index fc75e2f3..cb16b173 100644 --- a/core/debugadaptertype.h +++ b/core/debugadaptertype.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debugger.cpp b/core/debugger.cpp index 9d5718bd..c768b489 100644 --- a/core/debugger.cpp +++ b/core/debugger.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggercommon.h b/core/debuggercommon.h index 985442a1..c4c51824 100644 --- a/core/debuggercommon.h +++ b/core/debuggercommon.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggercontroller.cpp b/core/debuggercontroller.cpp index 22afebda..00e10548 100644 --- a/core/debuggercontroller.cpp +++ b/core/debuggercontroller.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggercontroller.h b/core/debuggercontroller.h index 3a04e768..dfa174d1 100644 --- a/core/debuggercontroller.h +++ b/core/debuggercontroller.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggerevent.h b/core/debuggerevent.h index 426b5eb2..54a62681 100644 --- a/core/debuggerevent.h +++ b/core/debuggerevent.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggerexceptions.h b/core/debuggerexceptions.h index b9bfe0c2..84ee21c9 100644 --- a/core/debuggerexceptions.h +++ b/core/debuggerexceptions.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggerstate.cpp b/core/debuggerstate.cpp index 6df346ca..2bdf97a3 100644 --- a/core/debuggerstate.cpp +++ b/core/debuggerstate.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/debuggerstate.h b/core/debuggerstate.h index c6c7cb61..b0caadf8 100644 --- a/core/debuggerstate.h +++ b/core/debuggerstate.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/ffi.cpp b/core/ffi.cpp index 83e2c181..1db9700a 100644 --- a/core/ffi.cpp +++ b/core/ffi.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/ffi_global.h b/core/ffi_global.h index 9447abfb..477d1a94 100644 --- a/core/ffi_global.h +++ b/core/ffi_global.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/processview.cpp b/core/processview.cpp index 36902dbe..147d2850 100644 --- a/core/processview.cpp +++ b/core/processview.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/processview.h b/core/processview.h index b4dbd2e5..3d7f6b43 100644 --- a/core/processview.h +++ b/core/processview.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/refcountobject.h b/core/refcountobject.h index f59e5aad..5a109153 100644 --- a/core/refcountobject.h +++ b/core/refcountobject.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/semaphore.cpp b/core/semaphore.cpp index 3032591c..4aab8e51 100644 --- a/core/semaphore.cpp +++ b/core/semaphore.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/core/semaphore.h b/core/semaphore.h index 20a3741d..2cc45c5d 100644 --- a/core/semaphore.h +++ b/core/semaphore.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/adaptersettings.cpp b/ui/adaptersettings.cpp index 7542628f..553bc5f7 100644 --- a/ui/adaptersettings.cpp +++ b/ui/adaptersettings.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/adaptersettings.h b/ui/adaptersettings.h index b74fb44c..37698bda 100644 --- a/ui/adaptersettings.h +++ b/ui/adaptersettings.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/attachprocess.cpp b/ui/attachprocess.cpp index 868429a8..1f729a08 100644 --- a/ui/attachprocess.cpp +++ b/ui/attachprocess.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/attachprocess.h b/ui/attachprocess.h index f8548864..0119f857 100644 --- a/ui/attachprocess.h +++ b/ui/attachprocess.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/breakpointswidget.cpp b/ui/breakpointswidget.cpp index bfe6a0aa..d48838f2 100644 --- a/ui/breakpointswidget.cpp +++ b/ui/breakpointswidget.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/breakpointswidget.h b/ui/breakpointswidget.h index ef58101b..9be5cba9 100644 --- a/ui/breakpointswidget.h +++ b/ui/breakpointswidget.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/codedatarenderer.cpp b/ui/codedatarenderer.cpp index 74fdbf30..19f7bfbe 100644 --- a/ui/codedatarenderer.cpp +++ b/ui/codedatarenderer.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/codedatarenderer.h b/ui/codedatarenderer.h index 9918b499..067e2663 100644 --- a/ui/codedatarenderer.h +++ b/ui/codedatarenderer.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/controlswidget.cpp b/ui/controlswidget.cpp index 52aed6c3..837e3b61 100644 --- a/ui/controlswidget.cpp +++ b/ui/controlswidget.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/controlswidget.h b/ui/controlswidget.h index bbe3eb21..055dd1ed 100644 --- a/ui/controlswidget.h +++ b/ui/controlswidget.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/debugadapterscriptingprovider.cpp b/ui/debugadapterscriptingprovider.cpp index 1cbd9aa1..b6b90ebf 100644 --- a/ui/debugadapterscriptingprovider.cpp +++ b/ui/debugadapterscriptingprovider.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/debugadapterscriptingprovider.h b/ui/debugadapterscriptingprovider.h index ddb08642..da420180 100644 --- a/ui/debugadapterscriptingprovider.h +++ b/ui/debugadapterscriptingprovider.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/debuggerwidget.cpp b/ui/debuggerwidget.cpp index 4c9916c6..c9b14fd6 100644 --- a/ui/debuggerwidget.cpp +++ b/ui/debuggerwidget.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/debuggerwidget.h b/ui/debuggerwidget.h index 9b7b2135..7dd519b3 100644 --- a/ui/debuggerwidget.h +++ b/ui/debuggerwidget.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/debugserversetting.cpp b/ui/debugserversetting.cpp index ded81cd0..1292a646 100644 --- a/ui/debugserversetting.cpp +++ b/ui/debugserversetting.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/debugserversetting.h b/ui/debugserversetting.h index 16556d86..1db34a68 100644 --- a/ui/debugserversetting.h +++ b/ui/debugserversetting.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/moduleswidget.cpp b/ui/moduleswidget.cpp index 046dbdb0..f25e8444 100644 --- a/ui/moduleswidget.cpp +++ b/ui/moduleswidget.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/moduleswidget.h b/ui/moduleswidget.h index 69a32d15..64c813a7 100644 --- a/ui/moduleswidget.h +++ b/ui/moduleswidget.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/registerswidget.cpp b/ui/registerswidget.cpp index 0c6b0e1d..b6a8c417 100644 --- a/ui/registerswidget.cpp +++ b/ui/registerswidget.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/registerswidget.h b/ui/registerswidget.h index aed6846c..02da65c3 100644 --- a/ui/registerswidget.h +++ b/ui/registerswidget.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/remoteprocess.cpp b/ui/remoteprocess.cpp index afa3739d..7656b137 100644 --- a/ui/remoteprocess.cpp +++ b/ui/remoteprocess.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/remoteprocess.h b/ui/remoteprocess.h index ea51d7c7..f1781f0f 100644 --- a/ui/remoteprocess.h +++ b/ui/remoteprocess.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/stackwidget.cpp b/ui/stackwidget.cpp index 2de9e4bd..ac371ee3 100644 --- a/ui/stackwidget.cpp +++ b/ui/stackwidget.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/stackwidget.h b/ui/stackwidget.h index 6731107f..d9305cce 100644 --- a/ui/stackwidget.h +++ b/ui/stackwidget.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/statusbar.cpp b/ui/statusbar.cpp index be6a54ef..a8159188 100644 --- a/ui/statusbar.cpp +++ b/ui/statusbar.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/statusbar.h b/ui/statusbar.h index 5ea4fcd8..66d2bc72 100644 --- a/ui/statusbar.h +++ b/ui/statusbar.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/targetscriptingprovier.cpp b/ui/targetscriptingprovier.cpp index 5fa6dd84..473b5887 100644 --- a/ui/targetscriptingprovier.cpp +++ b/ui/targetscriptingprovier.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/targetscriptingprovier.h b/ui/targetscriptingprovier.h index 4083695f..4fdbbde3 100644 --- a/ui/targetscriptingprovier.h +++ b/ui/targetscriptingprovier.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/threadframes.cpp b/ui/threadframes.cpp index 886684dc..d482caf4 100644 --- a/ui/threadframes.cpp +++ b/ui/threadframes.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/threadframes.h b/ui/threadframes.h index b35e7059..5949c104 100644 --- a/ui/threadframes.h +++ b/ui/threadframes.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/ui.cpp b/ui/ui.cpp index 3adad951..9167148f 100644 --- a/ui/ui.cpp +++ b/ui/ui.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/ui.h b/ui/ui.h index 2e3e3f1b..fb083461 100644 --- a/ui/ui.h +++ b/ui/ui.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/uinotification.cpp b/ui/uinotification.cpp index 3b99b144..98a2df48 100644 --- a/ui/uinotification.cpp +++ b/ui/uinotification.cpp @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/uinotification.h b/ui/uinotification.h index f92d8e07..524643d9 100644 --- a/ui/uinotification.h +++ b/ui/uinotification.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/ui/uitypes.h b/ui/uitypes.h index 1fa1cda8..d03b9030 100644 --- a/ui/uitypes.h +++ b/ui/uitypes.h @@ -1,5 +1,5 @@ /* -Copyright 2020-2023 Vector 35 Inc. +Copyright 2020-2024 Vector 35 Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.