]> git.lyx.org Git - lyx.git/blobdiff - src/support/filetools.h
fix a couple of hard crashes, constify local variables, whitespace changes, some...
[lyx.git] / src / support / filetools.h
index 354393f4fa17ca5b084d957da31495f26bb94425..b2df54ecfcc32f7c916d717e68b8d8f70388e6b1 100644 (file)
@@ -124,16 +124,6 @@ string const MakeLatexName(string const & file);
 /// Put the name in quotes suitable for the current shell
 string const QuoteName(string const & file);
 
-#if 0
-/** Returns an unique name to be used as a temporary file. If given,
-  'mask' should the prefix to the temporary file, the rest of the
-  temporary filename will be made from the pid and three letters.
-  */
-string const
-TmpFileName(string const & dir = string(), 
-           string const & mask = "lyx_tmp");
-#endif
-
 /// Is a filename/path absolute?
 bool AbsolutePath(string const & path);
 
@@ -156,11 +146,6 @@ string const GetExtension(string const & name);
 /// Create absolute path. If impossible, don't do anything
 string const ExpandPath(string const & path);
 
-#if 0
-/// gets current working directory
-string const GetCWD();
-#endif
-
 /** Convert relative path into absolute path based on a basepath.
   If relpath is absolute, just use that.
   If basepath doesn't exist use CWD.