mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Remove spurious punctuation.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2913 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
910b8c6a07
commit
6becea79f3
@ -1,3 +1,7 @@
|
||||
2001-10-23 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* os.h: remove spurious punctuation.
|
||||
|
||||
2001-10-19 John Levon <moz@compsoc.man.ac.uk>
|
||||
|
||||
* LAssert.h:
|
||||
|
@ -22,23 +22,23 @@ public:
|
||||
static void init(int * argc, char ** argv[]);
|
||||
|
||||
//
|
||||
static string binpath() {return binpath_;};
|
||||
static string binpath() {return binpath_;}
|
||||
|
||||
//
|
||||
static string binname() {return binname_;};
|
||||
static string binname() {return binname_;}
|
||||
|
||||
// system_tempdir actually doesn't belong here.
|
||||
// I put it here only to avoid a global variable.
|
||||
static void setTmpDir(string p) {tmpdir_ = p;};
|
||||
static void setTmpDir(string p) {tmpdir_ = p;}
|
||||
|
||||
//
|
||||
static string getTmpDir() {return tmpdir_;};
|
||||
static string getTmpDir() {return tmpdir_;}
|
||||
|
||||
//
|
||||
static string current_root();
|
||||
|
||||
//
|
||||
static os::shell_type shell() {return _shell;};
|
||||
static os::shell_type shell() {return _shell;}
|
||||
|
||||
// DBCS aware!
|
||||
static string::size_type common_path(string const &p1,
|
||||
|
Loading…
Reference in New Issue
Block a user