]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/bmploader.cpp
Remove unnecessary std:: qualifiers
[libs/gui.git] / source / graphics / bmploader.cpp
index b85cce16b1d28392e1b4ad72c2b9724204405c2c..eb069a11dceea856174040ecf29427cbd36028f9 100644 (file)
@@ -36,7 +36,7 @@ BmpLoader::BmpLoader(IO::Base &i, unsigned sb):
                throw invalid_argument("BmpLoader::BmpLoader");
 }
 
-bool BmpLoader::detect(const std::string &sig)
+bool BmpLoader::detect(const string &sig)
 {
        static const char bmp_sig[] = { 'B', 'M' };
        if(sig.size()<sizeof(bmp_sig))