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:
Angus Leeming 2001-10-23 08:44:03 +00:00
parent 910b8c6a07
commit 6becea79f3
2 changed files with 9 additions and 5 deletions

View File

@ -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:

View File

@ -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,