From 1542c9750db9db6f214b4f19783aa078bdd878ef Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 21 Apr 2020 21:31:29 +0100 Subject: [PATCH] Removed the 2 in the linked to message, it sounded odd. --- DynVoice.cpp | 6 ++---- Version.h | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/DynVoice.cpp b/DynVoice.cpp index 46d1e04..7643163 100644 --- a/DynVoice.cpp +++ b/DynVoice.cpp @@ -141,12 +141,10 @@ void CDynVoice::linkedTo(unsigned int number) ::sprintf(letters, "%u", number); std::vector words; - if (m_positions.count("linkedto") == 0U) { + if (m_positions.count("linkedto") == 0U) words.push_back("linked"); - words.push_back("2"); - } else { + else words.push_back("linkedto"); - } for (unsigned int i = 0U; letters[i] != '\0'; i++) words.push_back(std::string(1U, letters[i])); diff --git a/Version.h b/Version.h index 049e6ea..aa4c644 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20200418"; +const char* VERSION = "20200421"; #endif