refactor: Rename remaining "black" identifiers

This commit is contained in:
Lars Toenning
2024-11-10 21:50:35 +01:00
parent 6d1812b164
commit cc1e41fc59
579 changed files with 1758 additions and 1869 deletions

View File

@@ -23,7 +23,7 @@
* Put this macro in the private section of a class to set the channel of its child endpoints.
* \ingroup shared_state
*/
#define BLACK_SHARED_STATE_CHANNEL(ID) Q_CLASSINFO("SharedStateChannel", ID)
#define SWIFT_SHARED_STATE_CHANNEL(ID) Q_CLASSINFO("SharedStateChannel", ID)
namespace swift::misc::shared_state
{

View File

@@ -5,7 +5,7 @@
#include "misc/sharedstate/passiveobserver.h"
BLACK_DEFINE_VALUEOBJECT_MIXINS(swift::misc::shared_state, CAnyMatch)
SWIFT_DEFINE_VALUEOBJECT_MIXINS(swift::misc::shared_state, CAnyMatch)
namespace swift::misc::shared_state
{

View File

@@ -13,7 +13,7 @@
#include <QSharedPointer>
#include <QMutex>
BLACK_DECLARE_VALUEOBJECT_MIXINS(swift::misc::shared_state, CAnyMatch)
SWIFT_DECLARE_VALUEOBJECT_MIXINS(swift::misc::shared_state, CAnyMatch)
namespace swift::misc::shared_state
{
@@ -81,7 +81,7 @@ namespace swift::misc::shared_state
private:
int m_dummy = 0;
BLACK_METACLASS(CAnyMatch, BLACK_METAMEMBER(dummy));
SWIFT_METACLASS(CAnyMatch, SWIFT_METAMEMBER(dummy));
};
}