Skip to content

Commit

Permalink
Add missing namespace closing comments to fix clang-tidy [google-read…
Browse files Browse the repository at this point in the history
…ability-namespace-comments]
  • Loading branch information
daschuer committed Oct 3, 2023
1 parent 8d603d5 commit bdf1f3f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/library/librarycontrol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

namespace {
const QString kAppGroup = QStringLiteral("[App]");
}
} // namespace

LoadToGroupController::LoadToGroupController(LibraryControl* pParent, const QString& group)
: QObject(pParent),
Expand Down
2 changes: 1 addition & 1 deletion src/skin/skincontrols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace {
const QString kSkinGroup = QStringLiteral("[Skin]");
}
} // namespace

SkinControls::SkinControls()
: m_showEffectRack(ConfigKey(kSkinGroup, QStringLiteral("show_effectrack")),
Expand Down
2 changes: 1 addition & 1 deletion src/vinylcontrol/vinylcontrolmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace {
const QRegularExpression kChannelRegex(QStringLiteral("\\[Channel([1-9]\\d*)\\]"));
}
} // namespace

VinylControlManager::VinylControlManager(QObject* pParent,
UserSettingsPointer pConfig,
Expand Down
2 changes: 1 addition & 1 deletion src/waveform/renderers/waveformrenderersignalbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace {
const QString kEffectGroupFormat = QStringLiteral("[EqualizerRack1_%1_Effect1]");
}
} // namespace

WaveformRendererSignalBase::WaveformRendererSignalBase(
WaveformWidgetRenderer* waveformWidgetRenderer)
Expand Down
2 changes: 1 addition & 1 deletion src/widget/hexspinbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace {
const QRegularExpression kValidationRegex(QStringLiteral("^0(x|X)[0-9A-Fa-f]+"));
}
} // namespace

HexSpinBox::HexSpinBox(QWidget* pParent)
: QSpinBox(pParent) {
Expand Down
2 changes: 1 addition & 1 deletion src/widget/wbeatspinbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace {
const QRegularExpression kBlockListRegex(QStringLiteral("[^0-9.,/ ]"));
}
} // namespace

WBeatSpinBox::WBeatSpinBox(QWidget* parent,
const ConfigKey& configKey,
Expand Down
2 changes: 1 addition & 1 deletion src/widget/wtrackmenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

namespace {
const QString kAppGroup = QStringLiteral("[App]");
}
} // namespace

WTrackMenu::WTrackMenu(
QWidget* parent,
Expand Down

0 comments on commit bdf1f3f

Please sign in to comment.