X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flastfiles.h;h=884817df30a6ace638060ab42abc56bcffbf27ac;hb=e059c633b01937f450ff9fa873cfc6b773aa74cc;hp=e359c67f625a7d7ce5f5a9caa25ecdf088a10240;hpb=85798535a19919e82cc94a177a8414c542a9c5bf;p=lyx.git diff --git a/src/lastfiles.h b/src/lastfiles.h index e359c67f62..884817df30 100644 --- a/src/lastfiles.h +++ b/src/lastfiles.h @@ -20,8 +20,6 @@ #include "LString.h" -using std::deque; - /** The latest documents loaded This class takes care of the last .lyx files used by the LyX user. It both reads and writes this information to a file. The number of files @@ -31,7 +29,7 @@ class LastFiles { public: /// - typedef deque Files; + typedef std::deque Files; /**@name Constructors and Deconstructors */ //@{ @@ -39,7 +37,8 @@ public: Parameters are: name of file to read. Whether LastFiles should check for file existance, and the number of files to remember. */ - LastFiles(string const &, bool dostat = true, unsigned int num = 4); + explicit LastFiles(string const &, + bool dostat = true, unsigned int num = 4); //@} /**@name Methods */