summaryrefslogtreecommitdiffstats
path: root/src/PatchageEvent.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-28 15:58:38 +0100
committerDavid Robillard <d@drobilla.net>2020-11-28 17:39:10 +0100
commit0f8bd14d3487c35280c33bbfd133dd9e37c8f07e (patch)
tree701cac49a1e6e34025a8352e53845859566106b3 /src/PatchageEvent.hpp
parenta872f8b07498c85f0f2eb8b55462ac9df9ce4677 (diff)
downloadpatchage-0f8bd14d3487c35280c33bbfd133dd9e37c8f07e.tar.gz
patchage-0f8bd14d3487c35280c33bbfd133dd9e37c8f07e.tar.bz2
patchage-0f8bd14d3487c35280c33bbfd133dd9e37c8f07e.zip
Index clients and ports by ID
Diffstat (limited to 'src/PatchageEvent.hpp')
-rw-r--r--src/PatchageEvent.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageEvent.hpp b/src/PatchageEvent.hpp
index b4aa640..f2fa99d 100644
--- a/src/PatchageEvent.hpp
+++ b/src/PatchageEvent.hpp
@@ -32,12 +32,12 @@ struct NoopEvent
struct ClientCreationEvent
{
- std::string name;
+ ClientID id;
};
struct ClientDestructionEvent
{
- std::string name;
+ ClientID id;
};
struct PortCreationEvent