X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fimporter.cpp;h=e27111072336416038de8dc564504baafaa104ee;hb=dc48c477a00bfc7508654d698ffc14a12698a693;hp=779b96a1615c200c6536eb437b94698c0319077f;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/importer.cpp b/synfig-core/trunk/src/synfig/importer.cpp index 779b96a..e271110 100644 --- a/synfig-core/trunk/src/synfig/importer.cpp +++ b/synfig-core/trunk/src/synfig/importer.cpp @@ -2,10 +2,11 @@ /*! \file importer.cpp ** \brief writeme ** -** $Id: importer.cpp,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -88,7 +89,7 @@ Importer::open(const String &filename) synfig::error(_("Importer::open(): Cannot open empty filename")); return 0; } - + // If we already have an importer open under that filename, // then use it instead. if(__open_importers->count(filename)) @@ -96,23 +97,24 @@ Importer::open(const String &filename) //synfig::info("Found importer already open, using it..."); return (*__open_importers)[filename]; } - - if(find(filename.begin(),filename.end(),'.')==filename.end()) + + if(filename_extension(filename) == "") { synfig::error(_("Importer::open(): Couldn't find extension")); return 0; } - - String ext=string(filename.begin()+filename.find_last_of('.')+1,filename.end()); + + String ext(filename_extension(filename)); + if (ext.size()) ext = ext.substr(1); // skip initial '.' std::transform(ext.begin(),ext.end(),ext.begin(),&::tolower); - - + + if(!Importer::book().count(ext)) { synfig::error(_("Importer::open(): Unknown file type -- ")+ext); return 0; } - + try { Importer::Handle importer; importer=Importer::book()[ext](filename.c_str());