]> git.lyx.org Git - lyx.git/blobdiff - src/support/tempname.cpp
Introduce FileName::changePermission() and fix ConverterCache.
[lyx.git] / src / support / tempname.cpp
index 6c6e998210acbf7337b3ae5f283a96a0d94e717b..e5d19f30fe8b650776f21e93937aa7cd613da22e 100644 (file)
 #include "support/lyxlib.h"
 
 #include "support/convert.h"
+#include "support/debug.h"
 #include "support/filetools.h"
 #include "support/Package.h"
 
-#include "debug.h"
-
 #include <boost/scoped_array.hpp>
 
 #include <cstdlib>
@@ -43,10 +42,9 @@ extern "C" int mkstemp(char *);
 # endif
 #endif
 
-using boost::scoped_array;
+using namespace std;
 
-using std::string;
-using std::endl;
+using boost::scoped_array;
 
 namespace lyx {
 namespace support {
@@ -84,10 +82,9 @@ int make_tempfile(char * templ)
 
 FileName const tempName(FileName const & dir, string const & mask)
 {
-       string const tmpdir(dir.empty() ?
-                       package().temp_dir().absFilename() :
-                       dir.absFilename());
-       string tmpfl(to_filesystem8bit(from_utf8(addName(tmpdir, mask))));
+       string const tmpdir = dir.empty()
+               ? package().temp_dir().absFilename() : dir.absFilename();
+       string tmpfl = to_filesystem8bit(from_utf8(addName(tmpdir, mask)));
 #if defined (HAVE_GETPID)
        tmpfl += convert<string>(getpid());
 #elif defined (HAVE__GETPID)