Fix typos

This commit is contained in:
Martchus 2022-06-26 11:48:44 +02:00
parent 8f4ca38c69
commit 639018285d
3 changed files with 3 additions and 3 deletions

View File

@ -125,7 +125,7 @@ private:
/*!
* \brief Converts the specified string from one character set to another.
* \remarks
* - The term "size" referes here always to the actual number of bytes and not to the number of characters
* - The term "size" refers here always to the actual number of bytes and not to the number of characters
* (eg. the size of the UTF-8 string "ö" is 2 and not 1).
* - The expected size of the output buffer can be specified via \a outputBufferSizeFactor. This hint helps
* to reduce buffer reallocations during the conversion (eg. for the conversion from Latin-1 to UTF-16

View File

@ -40,7 +40,7 @@ None of these are enabled or set by default, unless stated otherwise.
(enabled by default)
* `BASH_COMPLETION_ENABLED=ON/OFF`: enables Bash completion (enabled by
default)
* `LOGGING_ENABLED=ON/OFF`: enables further loggin in some applications
* `LOGGING_ENABLED=ON/OFF`: enables further logging in some applications
* `FORCE_OLD_ABI=ON/OFF`: forces use of old C++ ABI
* sets `_GLIBCXX_USE_CXX11_ABI=0`
* only relevant when using libstdc++

View File

@ -324,7 +324,7 @@ void ArgumentParserTests::testParsing()
parser.parseArgs(2, argv6, ParseArgumentBehavior::CheckConstraints | ParseArgumentBehavior::InvokeCallbacks);
CPPUNIT_ASSERT(qtConfigArgs.qtWidgetsGuiArg().isPresent());
// constraint checking: dependend arguments (-f requires -i or -p)
// constraint checking: dependent arguments (-f requires -i or -p)
const char *argv7[] = { "tageditor", "-f", "test" };
parser.resetArgs();
try {