diff options
| author | 2022-09-29 12:01:29 +0100 | |
|---|---|---|
| committer | 2022-09-29 12:36:01 +0100 | |
| commit | 89537ed2ab22fcedb25e0378bd2c18e392911c0c (patch) | |
| tree | 4cdea30cb16c0a044d80ba4bab8ef9a645c90824 /src/snomasks.cpp | |
| parent | Use NOMINMAX on Windows and undefine error in the log header. (diff) | |
Fix various cases of the &* being next to the name instead of type.
Diffstat (limited to 'src/snomasks.cpp')
| -rw-r--r-- | src/snomasks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index 0c8dcdae0..793ca1fb5 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -35,13 +35,13 @@ void SnomaskManager::FlushSnotices() mask.Flush(); } -void SnomaskManager::EnableSnomask(char letter, const std::string &type) +void SnomaskManager::EnableSnomask(char letter, const std::string& type) { if (letter >= 'a' && letter <= 'z') masks[letter - 'a'].Description = type; } -void SnomaskManager::WriteToSnoMask(char letter, const std::string &text) +void SnomaskManager::WriteToSnoMask(char letter, const std::string& text) { if (letter >= 'a' && letter <= 'z') masks[letter - 'a'].SendMessage(text, letter); |
