diff options
author | Sergio Ahumada <sergio.ahumada@nokia.com> | 2010-11-09 14:57:24 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2010-11-09 14:57:24 (GMT) |
commit | 594420567e7bfbf4f7bce0845eaf4f7d7a1e9380 (patch) | |
tree | 921e2d6b29cd760c42e81e5f734979c3f7109e3e /src/gui/image | |
parent | 83fb9c38d3f176b132138675be64ab477e72fe88 (diff) | |
download | Qt-594420567e7bfbf4f7bce0845eaf4f7d7a1e9380.zip Qt-594420567e7bfbf4f7bce0845eaf4f7d7a1e9380.tar.gz Qt-594420567e7bfbf4f7bce0845eaf4f7d7a1e9380.tar.bz2 |
Doc: Fixing typo
Diffstat (limited to 'src/gui/image')
-rw-r--r-- | src/gui/image/qimage_ssse3.cpp | 2 | ||||
-rw-r--r-- | src/gui/image/qxpmhandler.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/image/qimage_ssse3.cpp b/src/gui/image/qimage_ssse3.cpp index 9aed011..836d7b0 100644 --- a/src/gui/image/qimage_ssse3.cpp +++ b/src/gui/image/qimage_ssse3.cpp @@ -54,7 +54,7 @@ Q_GUI_EXPORT void QT_FASTCALL qt_convert_rgb888_to_rgb32_ssse3(quint32 *dst, con { quint32 *const end = dst + len; - // Prologue, align dst to 16 bytes. The alignement is done on dst because it has 4 store() + // Prologue, align dst to 16 bytes. The alignment is done on dst because it has 4 store() // for each 3 load() of src. const int offsetToAlignOn16Bytes = (4 - ((reinterpret_cast<quintptr>(dst) >> 2) & 0x3)) & 0x3; const int prologLength = qMin(len, offsetToAlignOn16Bytes); diff --git a/src/gui/image/qxpmhandler.cpp b/src/gui/image/qxpmhandler.cpp index b97afd3..453100c 100644 --- a/src/gui/image/qxpmhandler.cpp +++ b/src/gui/image/qxpmhandler.cpp @@ -766,7 +766,7 @@ static bool qt_get_named_xpm_rgb(const char *name_no_space, QRgb *rgb) { XPMRGBData x; x.name = name_no_space; - // Funtion bsearch() is supposed to be + // Function bsearch() is supposed to be // void *bsearch(const void *key, const void *base, ... // So why (char*)? Are there broken bsearch() declarations out there? XPMRGBData *r = (XPMRGBData *)bsearch((char *)&x, (char *)xpmRgbTbl, xpmRgbTblSize, |