diff --git a/src/frontends/qt4/GuiImage.cpp b/src/frontends/qt4/GuiImage.cpp index 1b645311e5..efa198bc69 100644 --- a/src/frontends/qt4/GuiImage.cpp +++ b/src/frontends/qt4/GuiImage.cpp @@ -72,7 +72,7 @@ Image::FormatList GuiImage::loadableFormats() // << "pictureFormat not returned NULL\n" << endl; // << "Supported formats are: " << Pic.inputFormats() << endl; - QList qt_formats = QImageReader::supportedImageFormats (); + QList qt_formats = QImageReader::supportedImageFormats(); LYXERR(Debug::GRAPHICS) << "\nThe image loader can load the following directly:\n"; @@ -82,7 +82,7 @@ Image::FormatList GuiImage::loadableFormats() << "\nQt4 Problem: No Format available!" << endl; } - for (QList::const_iterator it =qt_formats.begin(); it != qt_formats.end(); ++it) { + for (QList::const_iterator it = qt_formats.begin(); it != qt_formats.end(); ++it) { LYXERR(Debug::GRAPHICS) << (const char *) *it << ", ";