X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FChktex.h;h=f45d14d82e8b2edc0f0808228de1ae77d2bdf5d7;hb=a858be7332e331e0244e4dba7b0931b6072ffd3d;hp=5fde42666c018948a3adb1450ff4e9a169c4193b;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/Chktex.h b/src/Chktex.h index 5fde42666c..f45d14d82e 100644 --- a/src/Chktex.h +++ b/src/Chktex.h @@ -4,17 +4,17 @@ * * LyX, The Document Processor * - * Copyright (C) 1995 Matthias Ettrich - * Copyright (C) 1995-1998 The LyX Team. + * Copyright 1995 Matthias Ettrich + * Copyright 1995-1999 The LyX Team. * - * This file is Copyright (C) 1997 + * This file is Copyright 1997 * Asger Alstrup * - *====================================================== + * ====================================================== */ -#ifndef _CHKTEX_H -#define _CHKTEX_H +#ifndef CHKTEX_H +#define CHKTEX_H #ifdef __GNUG__ #pragma interface @@ -32,8 +32,8 @@ public: cmd = the chktex command, file = name of the (temporary) latex file, path = name of the files original path. */ - Chktex(LString const & cmd, LString const & file, - LString const & path); + Chktex(string const & cmd, string const & file, + string const & path); /** Runs chktex. Returns -1 if fail, number of messages otherwise. @@ -44,13 +44,13 @@ private: int scanLogFile(TeXErrors &); /// - LString cmd; + string cmd; /// - LString file; + string file; /// - LString path; + string path; }; #endif