Skip to content

Commit

Permalink
Rename a file to prevent conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Apr 15, 2024
1 parent a6a83f3 commit df0f1ac
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 19 deletions.
10 changes: 6 additions & 4 deletions src/CardinalCommon.cpp
Expand Up @@ -17,7 +17,7 @@
#include "CardinalCommon.hpp"

#include "AsyncDialog.hpp"
#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"
#include "DistrhoPluginUtils.hpp"

#include <asset.hpp>
Expand Down Expand Up @@ -162,9 +162,11 @@ CardinalPluginContext::CardinalPluginContext(Plugin* const p)
dataOuts(nullptr),
midiEvents(nullptr),
midiEventCount(0),
plugin(p),
tlw(nullptr),
ui(nullptr)
plugin(p)
#ifndef HEADLESS
, tlw(nullptr)
, ui(nullptr)
#endif
{
std::memset(parameters, 0, sizeof(parameters));
}
Expand Down
2 changes: 1 addition & 1 deletion src/CardinalPlugin.cpp
Expand Up @@ -32,7 +32,7 @@

#include "CardinalCommon.hpp"
#include "DistrhoPluginUtils.hpp"
#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"
#include "extra/Base64.hpp"
#include "extra/ScopedDenormalDisable.hpp"
#include "extra/ScopedSafeLocale.hpp"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/CardinalRemote.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand All @@ -24,7 +24,7 @@
#endif

#include "CardinalRemote.hpp"
#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"
#include "extra/Base64.hpp"
#include "extra/ScopedSafeLocale.hpp"

Expand Down
4 changes: 2 additions & 2 deletions src/CardinalRemote/RemoteUI.hpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand All @@ -18,7 +18,7 @@
#pragma once

#include "NanoVG.hpp"
#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"
#include "WindowParameters.hpp"

#include <widget/Widget.hpp>
Expand Down
4 changes: 2 additions & 2 deletions src/CardinalRemote/main.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -30,7 +30,7 @@
#include <engine/Engine.hpp>
#include <ui/common.hpp>

#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"
#include "extra/ScopedValueSetter.hpp"

#define CARDINAL_TEMPLATE_NAME "init/main.vcv"
Expand Down
4 changes: 2 additions & 2 deletions src/CardinalUI.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -49,7 +49,7 @@
#include "Application.hpp"
#include "AsyncDialog.hpp"
#include "CardinalCommon.hpp"
#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"
#include "WindowParameters.hpp"
#include "extra/Base64.hpp"

Expand Down
4 changes: 2 additions & 2 deletions src/custom/glfw.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand All @@ -16,7 +16,7 @@
*/

#include "Application.hpp"
#include "PluginContext.hpp"
#include "CardinalPluginContext.hpp"

#include <GLFW/glfw3.h>

Expand Down
4 changes: 2 additions & 2 deletions src/override/MenuBar.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -53,7 +53,7 @@

#include "../CardinalCommon.hpp"
#include "../CardinalRemote.hpp"
#include "../PluginContext.hpp"
#include "../CardinalPluginContext.hpp"
#include "DistrhoPlugin.hpp"
#include "DistrhoStandaloneUtils.hpp"

Expand Down
4 changes: 2 additions & 2 deletions src/override/Window.cpp
@@ -1,6 +1,6 @@
/*
* DISTRHO Cardinal Plugin
* Copyright (C) 2021-2023 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2021-2024 Filipe Coelho <falktx@falktx.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
Expand Down Expand Up @@ -46,7 +46,7 @@
#include "Application.hpp"
#include "extra/String.hpp"
#include "../CardinalCommon.hpp"
#include "../PluginContext.hpp"
#include "../CardinalPluginContext.hpp"
#include "../WindowParameters.hpp"

#ifndef DGL_NO_SHARED_RESOURCES
Expand Down

0 comments on commit df0f1ac

Please sign in to comment.