From 2d063825c39695b400643a9b2f3e31fb2183f822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 15 May 2012 12:50:32 +0200 Subject: [PATCH] TgaImporter: minor cleanup --- src/Plugins/TgaImporter/TgaImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/TgaImporter/TgaImporter.cpp b/src/Plugins/TgaImporter/TgaImporter.cpp index a8c49a176..ec37e8443 100644 --- a/src/Plugins/TgaImporter/TgaImporter.cpp +++ b/src/Plugins/TgaImporter/TgaImporter.cpp @@ -40,7 +40,7 @@ bool TgaImporter::TgaImporter::open(const string& filename) { return status; } -bool TgaImporter::open(std::istream& in) { +bool TgaImporter::open(istream& in) { if(_image) close(); if(!in.good()) { Error() << "TgaImporter: cannot read input stream";