summaryrefslogtreecommitdiffstats
path: root/qtools/qstring.cpp
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2019-11-12 04:26:36 (GMT)
committerJosh Soref <jsoref@users.noreply.github.com>2019-11-12 04:26:36 (GMT)
commit7eac72cdaa0979f45110216fd3db22f6a8a535d1 (patch)
tree41694e19f87ed706a5761354144786f4eabf024c /qtools/qstring.cpp
parentd4eb40dfa97855a93c463ad0d8d7feb706d062e9 (diff)
downloadDoxygen-7eac72cdaa0979f45110216fd3db22f6a8a535d1.zip
Doxygen-7eac72cdaa0979f45110216fd3db22f6a8a535d1.tar.gz
Doxygen-7eac72cdaa0979f45110216fd3db22f6a8a535d1.tar.bz2
spelling: endianess
Diffstat (limited to 'qtools/qstring.cpp')
-rw-r--r--qtools/qstring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtools/qstring.cpp b/qtools/qstring.cpp
index e809d0d..3d57839 100644
--- a/qtools/qstring.cpp
+++ b/qtools/qstring.cpp
@@ -15300,7 +15300,7 @@ const void* qt_winTchar(const QString& str_in, bool addnul)
if ( addnul )
buf[str.length()] = 0;
#else
- // Same endianness of TCHAR
+ // Same endianess of TCHAR
if ( addnul ) {
EXTEND
memcpy(buf,uc,sizeof(TCHAR)*str.length());
@@ -15344,7 +15344,7 @@ QString qt_winQString(void* tc)
r += QChar(((TCHAR*)tc)[i]&0xff,((TCHAR*)tc)[i]>>8);
return r;
#else
- // Same endianness of TCHAR
+ // Same endianess of TCHAR
return QString((QChar*)tc,len);
#endif
#undef EXTEND