Browse Source

Misc

tags/1.9.4
falkTX 11 years ago
parent
commit
e94997ae50
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      source/backend/engine/CarlaEngineGraph.cpp
  2. +2
    -2
      source/backend/engine/CarlaEngineGraph.hpp

+ 1
- 1
source/backend/engine/CarlaEngineGraph.cpp View File

@@ -386,7 +386,7 @@ void RackGraph::clearConnections() noexcept
midi.outs.clear();
}

const char* const* RackGraph::getConnections() noexcept
const char* const* RackGraph::getConnections() const noexcept
{
if (connections.list.count() == 0)
return nullptr;


+ 2
- 2
source/backend/engine/CarlaEngineGraph.hpp View File

@@ -62,7 +62,7 @@ struct RackGraph {
const uint32_t inputs;
const uint32_t outputs;
bool isOffline;
CharStringListPtr retCon;
mutable CharStringListPtr retCon;

struct Audio {
CarlaRecursiveMutex mutex;
@@ -92,7 +92,7 @@ struct RackGraph {
bool disconnect(CarlaEngine* const engine, const uint connectionId) noexcept;
void clearConnections() noexcept;

const char* const* getConnections() noexcept;
const char* const* getConnections() const noexcept;
bool getGroupAndPortIdFromFullName(const char* const fullPortName, uint& groupId, uint& portId) const noexcept;

// the base, where plugins run


Loading…
Cancel
Save