summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorSergey Belyashov <Sergey.Belyashov@gmail.com>2012-02-16 18:46:05 (GMT)
committerQt by Nokia <qt-info@nokia.com>2012-02-20 12:21:40 (GMT)
commit2f7b750bd87402c6bb5ea5b8b9de9bb84060fe4d (patch)
treee0f24ad9b8973c3f7adae4a174c746c498dc565e /src/plugins
parent262444086fe949441aebb6c6726ba13c97476191 (diff)
downloadQt-2f7b750bd87402c6bb5ea5b8b9de9bb84060fe4d.zip
Qt-2f7b750bd87402c6bb5ea5b8b9de9bb84060fe4d.tar.gz
Qt-2f7b750bd87402c6bb5ea5b8b9de9bb84060fe4d.tar.bz2
Fixed typo in text: "dpeth" -> "depth"
Change-Id: Ic910dc63db5625640735e2918f09c75a1d8669cc Reviewed-by: Sergey Belyashov <Sergey.Belyashov@gmail.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/imageformats/tga/qtgafile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/imageformats/tga/qtgafile.cpp b/src/plugins/imageformats/tga/qtgafile.cpp
index adf5657..2bdc704 100644
--- a/src/plugins/imageformats/tga/qtgafile.cpp
+++ b/src/plugins/imageformats/tga/qtgafile.cpp
@@ -162,7 +162,7 @@ QTgaFile::QTgaFile(QIODevice *device)
bool validDepth = (bitsPerPixel == 16 || bitsPerPixel == 24 || bitsPerPixel == 32);
if (!validDepth)
{
- mErrorMessage = QObject::tr("Image dpeth not valid");
+ mErrorMessage = QObject::tr("Image depth not valid");
}
int curPos = mDevice->pos();
int fileBytes = mDevice->size();