]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFloatList.cpp
Embedding: merge lyx::EmbeddedFiles to lyx::support::EmbeddedFileList
[lyx.git] / src / insets / InsetFloatList.cpp
index ed18d6f2f9c05ac8a4c6ed91d75753b3a466a598..642ef7e3ef79423c2d296edf35c9ca3facb5ca9b 100644 (file)
@@ -48,7 +48,7 @@ InsetFloatList::InsetFloatList(string const & type)
 }
 
 
-CommandInfo const * InsetFloatList::findInfo(std::string const & /* cmdName */)
+CommandInfo const * InsetFloatList::findInfo(string const & /* cmdName */)
 {
        static const char * const paramnames[] = {"type", ""};
        static const bool isoptional[] = {false};
@@ -58,9 +58,9 @@ CommandInfo const * InsetFloatList::findInfo(std::string const & /* cmdName */)
 
 
 //HACK
-bool InsetFloatList::isCompatibleCommand(std::string const & s)
+bool InsetFloatList::isCompatibleCommand(string const & s)
 {
-       std::string str = s.substr(0, 6);
+       string str = s.substr(0, 6);
        return str == "listof";
 }
 
@@ -76,7 +76,7 @@ docstring const InsetFloatList::getScreenLabel(Buffer const & buf) const
 }
 
 
-void InsetFloatList::write(Buffer const &, std::ostream & os) const
+void InsetFloatList::write(Buffer const &, ostream & os) const
 {
        os << "FloatList " << to_ascii(getParam("type")) << "\n";
 }