]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileFilterList.cpp
* get rid of support::absolutePath()
[lyx.git] / src / support / FileFilterList.cpp
index 06272d13101b29d386f3ef7125842557d9b91213..e960502a170dc7df9aba410a1e7d512b8c7ae7b5 100644 (file)
 #include <config.h>
 
 #include "support/FileFilterList.h"
-#include "support/lstrings.h"
 
-// FIXME Interface violation
-#include "gettext.h"
+#include "support/lstrings.h"
+#include "support/gettext.h"
 
 #include <boost/regex.hpp>
 #include <boost/tokenizer.hpp>
 
 #include <sstream>
 
-using std::distance;
-using std::ostringstream;
-using std::string;
-using std::vector;
-
+using namespace std;
 
 namespace {
 
@@ -82,7 +77,7 @@ namespace lyx {
 namespace support {
 
 FileFilterList::Filter::Filter(docstring const & description,
-                              std::string const & globs)
+                              string const & globs)
        : desc_(description)
 {
        typedef boost::tokenizer<boost::char_separator<char> > Tokenizer;