]> git.lyx.org Git - lyx.git/blobdiff - src/support/mkdir.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / mkdir.C
index e45d46728e4d1575d304355655d016406737e6bc..546bbf8e654f6a3338affdba977dbb8af5ccb2e3 100644 (file)
@@ -3,9 +3,9 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 #include <fcntl.h>
 #include <unistd.h>
 
-#include "LString.h"
-
 #include "lyxlib.h"
 
-int lyx::support::mkdir(string const & pathname, unsigned long int mode)
+int lyx::support::mkdir(std::string const & pathname, unsigned long int mode)
 {
        // FIXME: why don't we have mode_t in lyx::mkdir prototype ??
        return ::mkdir(pathname.c_str(), mode_t(mode));