Skip to content

Commit

Permalink
Fixed compiling with the renamed files GrandOrgue#703
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Samarin committed Nov 29, 2021
1 parent ec81961 commit 824400b
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/grandorgue/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ GOLabel.cpp
GOManual.cpp
GOMetronome.cpp
GOMainWindowData.cpp
midi/ports/GOMidiFactory.cpp
midi/ports/GOMidiPortFactory.cpp
midi/ports/GOMidiInPort.cpp
midi/ports/GOMidiOutPort.cpp
midi/ports/GOMidiPort.cpp
midi/ports/GOMidiRtFactory.cpp
midi/ports/GOMidiRtPortFactory.cpp
midi/ports/GOMidiRtInPort.cpp
midi/ports/GOMidiRtOutPort.cpp
midi/GOMidi.cpp
Expand Down Expand Up @@ -126,7 +126,7 @@ sound/GOSound.cpp
sound/ports/GOSoundJackPort.cpp
sound/ports/GOSoundPort.cpp
sound/ports/GOSoundPortaudioPort.cpp
sound/ports/GOSoundPortsConfig.cpp
settings/GOPortsConfig.cpp
sound/ports/GOSoundRtPort.cpp
GOSoundingPipe.cpp
GOSplash.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/midi/GOMidi.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include <wx/event.h>

#include "ports/GOMidiFactory.h"
#include "ports/GOMidiPortFactory.h"

class GOMidiEvent;
class GOMidiInPort;
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/midi/ports/GOMidiPortFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* License GPL-2.0 or later (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
*/

#include "GOMidiFactory.h"
#include "GOMidiPortFactory.h"

void GOMidiFactory::addMissingInDevices(GOMidi* midi, ptr_vector<GOMidiInPort>& ports)
{
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/midi/ports/GOMidiPortFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "GOMidiInPort.h"
#include "GOMidiOutPort.h"
#include "GOMidiRtFactory.h"
#include "GOMidiRtPortFactory.h"

class GOMidi;

Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/midi/ports/GOMidiRtPortFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* License GPL-2.0 or later (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
*/

#include "GOMidiRtFactory.h"
#include "GOMidiRtPortFactory.h"
#include "GOMidiRtInPort.h"
#include "GOMidiRtOutPort.h"

Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/settings/GOPortsConfig.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "GOSoundPortsConfig.h"
#include "GOPortsConfig.h"

int GOSoundPortsConfig::Find(
const wxString &portName, const wxString &apiName
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/settings/GOSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "settings/GOSettingString.h"
#include "settings/GOSettingStore.h"
#include "settings/GOSettingString.h"
#include "sound/ports/GOSoundPortsConfig.h"
#include "GOPortsConfig.h"
#include "ptrvector.h"
#include <wx/gdicmn.h>
#include <wx/string.h>
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/settings/SettingsAudioOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <wx/treelist.h>

#include "sound/GOSoundDevInfo.h"
#include "sound/ports/GOSoundPortsConfig.h"
#include "GOPortsConfig.h"
#include "SettingsAudioGroup.h"

class AudioItemData;
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/sound/GOSound.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "GOSoundRecorder.h"
#include "midi/GOMidi.h"
#include "GOSoundDevInfo.h"
#include "ports/GOSoundPortsConfig.h"
#include "settings/GOPortsConfig.h"

#include "threading/atomic.h"
#include "threading/GOMutex.h"
Expand Down
2 changes: 1 addition & 1 deletion src/grandorgue/sound/ports/GOSoundPort.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define GOSOUNDPORT_H

#include "sound/GOSoundDevInfo.h"
#include "GOSoundPortsConfig.h"
#include "settings/GOPortsConfig.h"

#include <wx/string.h>
#include <vector>
Expand Down

0 comments on commit 824400b

Please sign in to comment.