Skip to content

Commit 64b26a7

Browse files
committed
Renamed file GODrawStop to GODrawstop
1 parent 18e3d86 commit 64b26a7

10 files changed

+18
-18
lines changed

src/grandorgue/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2006 Milan Digital Audio LLC
2-
# Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
2+
# Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
33
# License GPL-2.0 or later (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
44

55
include(${CMAKE_SOURCE_DIR}/cmake/AddLinkerOption.cmake)
@@ -165,7 +165,7 @@ model/pipe-config/GOPipeConfigTreeNode.cpp
165165
model/GOCacheObject.cpp
166166
model/GOCoupler.cpp
167167
model/GODivisionalCoupler.cpp
168-
model/GODrawStop.cpp
168+
model/GODrawstop.cpp
169169
model/GOEnclosure.cpp
170170
model/GOEventHandlerList.cpp
171171
model/GOManual.cpp

src/grandorgue/combinations/model/GOCombination.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -15,7 +15,7 @@
1515
#include "config/GOConfigWriter.h"
1616
#include "model/GOCoupler.h"
1717
#include "model/GODivisionalCoupler.h"
18-
#include "model/GODrawStop.h"
18+
#include "model/GODrawstop.h"
1919
#include "model/GOManual.h"
2020
#include "model/GOOrganModel.h"
2121
#include "model/GOStop.h"

src/grandorgue/control/GOPistonControl.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -12,7 +12,7 @@
1212

1313
#include "config/GOConfigReader.h"
1414
#include "model/GOCoupler.h"
15-
#include "model/GODrawStop.h"
15+
#include "model/GODrawstop.h"
1616
#include "model/GOManual.h"
1717
#include "model/GOOrganModel.h"
1818
#include "model/GOStop.h"

src/grandorgue/model/GOCoupler.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -10,7 +10,7 @@
1010

1111
#include <vector>
1212

13-
#include "GODrawStop.h"
13+
#include "GODrawstop.h"
1414

1515
class GOConfigReader;
1616
class GOConfigWriter;

src/grandorgue/model/GODivisionalCoupler.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -11,7 +11,7 @@
1111
#include <set>
1212
#include <vector>
1313

14-
#include "GODrawStop.h"
14+
#include "GODrawstop.h"
1515

1616
class GOOrganModel;
1717

src/grandorgue/model/GODrawStop.cpp src/grandorgue/model/GODrawstop.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
77

8-
#include "GODrawStop.h"
8+
#include "GODrawstop.h"
99

1010
#include <wx/intl.h>
1111

File renamed without changes.

src/grandorgue/model/GOStop.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -12,7 +12,7 @@
1212

1313
#include <vector>
1414

15-
#include "GODrawStop.h"
15+
#include "GODrawstop.h"
1616

1717
class GORank;
1818

src/grandorgue/model/GOSwitch.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
77

88
#ifndef GOSWITCH_H
99
#define GOSWITCH_H
1010

11-
#include "GODrawStop.h"
11+
#include "GODrawstop.h"
1212

1313
class GOSwitch : public GODrawstop {
1414
// the number of manual for mainual switches

src/grandorgue/model/GOTremulant.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2006 Milan Digital Audio LLC
3-
* Copyright 2009-2024 GrandOrgue contributors (see AUTHORS)
3+
* Copyright 2009-2025 GrandOrgue contributors (see AUTHORS)
44
* License GPL-2.0 or later
55
* (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
66
*/
@@ -12,7 +12,7 @@
1212
#include <wx/string.h>
1313

1414
#include "GOCacheObject.h"
15-
#include "GODrawStop.h"
15+
#include "GODrawstop.h"
1616

1717
class GOSoundProvider;
1818
class GOConfigReader;

0 commit comments

Comments
 (0)