summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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();