mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-24 07:05:34 -07:00
Fix warning for euro symbol in CustomMessageManager.h.
This commit is contained in:
parent
7ecefa8f90
commit
45ea1db3f1
2 changed files with 4 additions and 2 deletions
|
@ -138,6 +138,8 @@ endforeach()
|
||||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||||
set_source_files_properties(soh/OTRGlobals.cpp PROPERTIES COMPILE_FLAGS "/utf-8")
|
set_source_files_properties(soh/OTRGlobals.cpp PROPERTIES COMPILE_FLAGS "/utf-8")
|
||||||
set_source_files_properties(soh/Enhancements/tts/tts.cpp PROPERTIES COMPILE_FLAGS "/utf-8")
|
set_source_files_properties(soh/Enhancements/tts/tts.cpp PROPERTIES COMPILE_FLAGS "/utf-8")
|
||||||
|
set_source_files_properties(soh/Enhancements/custom-message/CustomMessageManager.cpp PROPERTIES COMPILE_FLAGS "/utf-8")
|
||||||
|
set_source_files_properties(soh/Enhancements/custom-message/CustomMessageManager.h PROPERTIES COMPILE_FLAGS "/utf-8")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# handle Network removals
|
# handle Network removals
|
||||||
|
|
|
@ -154,9 +154,9 @@ class CustomMessage {
|
||||||
void InsertNumber(uint8_t num);
|
void InsertNumber(uint8_t num);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief A € sign at the end of an item name signals that it is plural.
|
* @brief A € sign at the end of an item name signals that it is plural.
|
||||||
* If a hint text has |singular|plural| forms specified, the unused one get's deleted.
|
* If a hint text has |singular|plural| forms specified, the unused one get's deleted.
|
||||||
* If no € sign is present, the singular form is used.
|
* If no € sign is present, the singular form is used.
|
||||||
*/
|
*/
|
||||||
void SetSingularPlural();
|
void SetSingularPlural();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue