From 25d9537fbd059f30f8fdabcb47484ec6b7e3ef6c Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Wed, 25 Sep 2002 10:03:41 +0000 Subject: [PATCH] Clean up licence info and add Lars as the mysterious unknown author. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5341 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/ChangeLog | 4 ++++ src/support/FileInfo.C | 18 +++++++++--------- src/support/FileInfo.h | 14 +++++++------- src/support/FileMonitor.C | 12 +++++++----- src/support/FileMonitor.h | 10 ++++++---- src/support/LAssert.C | 14 +++++++------- src/support/LIstream.h | 15 +++++---------- src/support/LOstream.h | 15 +++++---------- src/support/filetools.C | 32 +++++++++++++++++--------------- src/support/filetools.h | 9 +++++---- src/support/forkedcall.C | 8 +++++--- src/support/forkedcall.h | 8 +++++--- src/support/forkedcontr.C | 6 ++++-- src/support/forkedcontr.h | 6 ++++-- src/support/limited_stack.h | 20 +++++++++++--------- src/support/lstrings.C | 15 ++++++++------- src/support/lstrings.h | 22 +++++++++++++--------- src/support/lyxalgo.h | 10 ++++++---- src/support/lyxlib.h | 8 +++++--- src/support/lyxstring.C | 16 ++++++++-------- src/support/lyxstring.h | 14 +++++++------- src/support/lyxsum.C | 12 ++++++------ src/support/nt_defines.h | 22 ++++++++-------------- src/support/os2_defines.h | 17 +++++++---------- src/support/os2_errortable.h | 19 ++++++++----------- src/support/path.C | 12 +++++++----- src/support/path.h | 14 ++++++++------ src/support/systemcall.C | 8 +++++--- src/support/systemcall.h | 12 +++++++----- src/support/textutils.h | 9 ++++++--- src/support/translator.h | 8 +++++--- src/support/types.h | 6 ++++-- 32 files changed, 219 insertions(+), 196 deletions(-) diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 3dd7568adf..1f1c165ba0 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,7 @@ +2002-09-24 Angus Leeming + + * most files: clean-up the license info. + 2002-09-24 Lars Gullik Bjønnes * Makefile.am (INCLUDES): loose SIGC_INCLUDES diff --git a/src/support/FileInfo.C b/src/support/FileInfo.C index 795e1a57ce..27195f3d62 100644 --- a/src/support/FileInfo.C +++ b/src/support/FileInfo.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file FileInfo.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include @@ -102,7 +102,7 @@ void flagRWX(mode_t i, char * str) void setSticky(mode_t i, char * str) { #ifdef S_ISUID - if (i & S_ISUID) + if (i & S_ISUID) str[3] = (str[3] == 'x') ? 's' : 'S'; #endif #ifdef S_ISGID @@ -110,7 +110,7 @@ void setSticky(mode_t i, char * str) str[6] = (str[6] == 'x') ? 's' : 'S'; #endif #ifdef S_ISVTX - if (i & S_ISVTX) + if (i & S_ISVTX) str[9] = (str[9] == 'x') ? 's' : 'S'; #endif } diff --git a/src/support/FileInfo.h b/src/support/FileInfo.h index 309dcf9f9c..b83e0dc752 100644 --- a/src/support/FileInfo.h +++ b/src/support/FileInfo.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file FileInfo.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef FILE_INFO_H #define FILE_INFO_H diff --git a/src/support/FileMonitor.C b/src/support/FileMonitor.C index 4bc514e581..84f47cdaad 100644 --- a/src/support/FileMonitor.C +++ b/src/support/FileMonitor.C @@ -1,9 +1,11 @@ -/* +/** * \file FileMonitor.C - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS */ #include @@ -65,7 +67,7 @@ void FileMonitor::reset(string const & file_with_path) const bool const monitor = pimpl_->timer_.running(); if (monitor) stop(); - + pimpl_->filename_ = file_with_path; if (monitor) diff --git a/src/support/FileMonitor.h b/src/support/FileMonitor.h index f91e3f2541..3ddf4417a9 100644 --- a/src/support/FileMonitor.h +++ b/src/support/FileMonitor.h @@ -1,10 +1,12 @@ // -*- C++ -*- -/* +/** * \file FileMonitor.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS * * FileMonitor monitors a file and informs a listener when that file has * changed. diff --git a/src/support/LAssert.C b/src/support/LAssert.C index ab0e6da223..233f743b85 100644 --- a/src/support/LAssert.C +++ b/src/support/LAssert.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file LAssert.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/support/LIstream.h b/src/support/LIstream.h index 60d5bc79aa..8570fbdd1b 100644 --- a/src/support/LIstream.h +++ b/src/support/LIstream.h @@ -1,14 +1,9 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ - +/** + * \file LIStream.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + */ #ifndef LISTREAM_H #define LISTREAM_H diff --git a/src/support/LOstream.h b/src/support/LOstream.h index bd6ec805e6..11f68e29b1 100644 --- a/src/support/LOstream.h +++ b/src/support/LOstream.h @@ -1,14 +1,9 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ - +/** + * \file LOStream.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + */ #ifndef LOSTREAM_H #define LOSTREAM_H diff --git a/src/support/filetools.C b/src/support/filetools.C index fd938e7c8a..d8c4438d96 100644 --- a/src/support/filetools.C +++ b/src/support/filetools.C @@ -1,18 +1,20 @@ -/* - filetools.C (former paths.C) - part of LyX project - General path-mangling functions - Copyright 1996 Ivan Schreter - Parts Copyright 1996 Dirk Niggemann - Parts Copyright 1985, 1990, 1993 Free Software Foundation, Inc. - Parts Copyright 1996 Asger Alstrup - - See also filetools.h. - - lyx-filetool.C : tools functions for file/path handling - this file is part of LyX, the High Level Word Processor - Copyright 1995-1996, Matthias Ettrich and the LyX Team - -*/ +/** + * \file filetools.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * parts Copyright 1985, 1990, 1993 Free Software Foundation, Inc. + * + * \author Ivan Schreter + * \author Dirk Niggemann + * \author Asger Alstrup + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes + * + * Full author contact details are available in file CREDITS + * + * General path-mangling functions + */ #include diff --git a/src/support/filetools.h b/src/support/filetools.h index 3815daa32c..0719d8265a 100644 --- a/src/support/filetools.h +++ b/src/support/filetools.h @@ -1,8 +1,9 @@ // -*- C++-*- -/* lyx-filetool.h : tools functions for file/path handling - this file is part of LyX, the High Level Word Processor - Copyright 1995-2001, Matthias Ettrich and the LyX Team -*/ +/** + * \file filetools.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + */ #ifndef LYX_FILETOOL_H #define LYX_FILETOOL_H diff --git a/src/support/forkedcall.C b/src/support/forkedcall.C index 6ba3bf3f10..5a704dce4b 100644 --- a/src/support/forkedcall.C +++ b/src/support/forkedcall.C @@ -1,12 +1,14 @@ /** * \file forkedcall.C - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Asger Alstrup * * Interface cleaned up by - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS * * An instance of Class Forkedcall represents a single child process. * diff --git a/src/support/forkedcall.h b/src/support/forkedcall.h index f51b86e1b8..2843261ef4 100644 --- a/src/support/forkedcall.h +++ b/src/support/forkedcall.h @@ -1,13 +1,15 @@ // -*- C++ -*- /** * \file forkedcall.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Asger Alstrup * * Interface cleaned up by - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS * * An instance of Class Forkedcall represents a single child process. * diff --git a/src/support/forkedcontr.C b/src/support/forkedcontr.C index 7df4e211c3..0da94ef5d0 100644 --- a/src/support/forkedcontr.C +++ b/src/support/forkedcontr.C @@ -1,11 +1,13 @@ /** * \file forkedcontr.C - * Copyright 2001 The LyX Team - * Read COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Asger Alstrup Nielsen * \author Angus Leeming * + * Full author contact details are available in file CREDITS + * * A class for the control of child processes launched using * fork() and execvp(). */ diff --git a/src/support/forkedcontr.h b/src/support/forkedcontr.h index 73bb424f4c..7493a25910 100644 --- a/src/support/forkedcontr.h +++ b/src/support/forkedcontr.h @@ -1,12 +1,14 @@ // -*- C++ -*- /** * \file forkedcontr.h - * Copyright 2001 The LyX Team - * Read COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Asger Alstrup Nielsen * \author Angus Leeming * + * Full author contact details are available in file CREDITS + * * A class for the control of child processes launched using * fork() and execvp(). */ diff --git a/src/support/limited_stack.h b/src/support/limited_stack.h index 14eef6e0c6..0c5c093c54 100644 --- a/src/support/limited_stack.h +++ b/src/support/limited_stack.h @@ -1,10 +1,12 @@ // -*- C++ -*- /** * \file limited_stack.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author John Levon + * \author John Levon + * + * Full author contact details are available in file CREDITS */ #ifndef LIMITED_STACK_H @@ -24,7 +26,7 @@ public: typedef std::list container_type; typedef typename container_type::value_type value_type; typedef typename container_type::size_type size_type; - + /// limit is the maximum size of the stack limited_stack(size_type limit = 100) { limit_ = limit; @@ -39,7 +41,7 @@ public: void pop() { c_.pop_front(); } - + /// return true if the stack is empty bool empty() const { return c_.size() == 0; @@ -51,16 +53,16 @@ public: c_.pop_back(); } } - + /// push an item on to the stack, deleting the /// bottom item on overflow. void push(value_type const & v) { c_.push_front(v); if (c_.size() > limit_) { - c_.pop_back(); + c_.pop_back(); } } - + private: /// internal contents container_type c_; @@ -71,5 +73,5 @@ private: // make pointer type an error. template class limited_stack; - + #endif // LIMITED_STACK_H diff --git a/src/support/lstrings.C b/src/support/lstrings.C index 15ff13f37b..dc01255731 100644 --- a/src/support/lstrings.C +++ b/src/support/lstrings.C @@ -1,12 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file lstrings.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/support/lstrings.h b/src/support/lstrings.h index 8bcee0ae23..4fbde835dc 100644 --- a/src/support/lstrings.h +++ b/src/support/lstrings.h @@ -1,13 +1,17 @@ // -*- C++ -*- - -/** String helper functions. - \file lstrings.h - This is a collection of string helper functions that works - together with string (and later also with STL String. Some of these - would certainly benefit from a rewrite/optimization. - \author Lars Gullik Bjønnes - \author Jean-Marc Lasgouttes -*/ +/** + * \file lstrings.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * \author Jean-Marc Lasgouttes + * + * Full author contact details are available in file CREDITS + * + * A collection of string helper functions that works with string. + * Some of these would certainly benefit from a rewrite/optimization. + */ #ifndef LSTRINGS_H #define LSTRINGS_H diff --git a/src/support/lyxalgo.h b/src/support/lyxalgo.h index 7f4fda7281..a40d2a5cb6 100644 --- a/src/support/lyxalgo.h +++ b/src/support/lyxalgo.h @@ -1,12 +1,14 @@ // -*- C++ -*- /** * \file lyxalgo.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * A variety of useful templates. + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS * - * \author unknown + * A variety of useful templates. */ #ifndef LYX_ALGO_H diff --git a/src/support/lyxlib.h b/src/support/lyxlib.h index 1f28f7bda9..e1c76ed649 100644 --- a/src/support/lyxlib.h +++ b/src/support/lyxlib.h @@ -1,13 +1,15 @@ // -*- C++ -*- /** * \file lyxlib.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * A selection of useful system functions made * handy for C++ usage. * - * \author unknown + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS */ #ifndef LYX_LIB_H diff --git a/src/support/lyxstring.C b/src/support/lyxstring.C index 869451135e..fbe70e23dc 100644 --- a/src/support/lyxstring.C +++ b/src/support/lyxstring.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file lyxstring.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifdef HAVE_CONFIG_H #include @@ -1751,7 +1751,7 @@ istream & operator>>(istream & is, lyxstring & s) if (isspace(c)) { if (!skipspace) { is.putback(c); - break; + break; } } else { s += c; diff --git a/src/support/lyxstring.h b/src/support/lyxstring.h index e6dbcdc8a3..78b768b4a2 100644 --- a/src/support/lyxstring.h +++ b/src/support/lyxstring.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file lyxstring.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ // This one is heavily based on the string class in The C++ // Programming Language by Bjarne Stroustrup diff --git a/src/support/lyxsum.C b/src/support/lyxsum.C index 213298cc04..55763b28f3 100644 --- a/src/support/lyxsum.C +++ b/src/support/lyxsum.C @@ -1,13 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file lyxsum.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * Copyright 2001 The LyX Team. + * \author Lars Gullik Bjønnes * - * ====================================================== + * Full author contact details are available in file CREDITS */ - #include #include "support/lyxlib.h" diff --git a/src/support/nt_defines.h b/src/support/nt_defines.h index 9efb2aa46f..fe9d26fa87 100644 --- a/src/support/nt_defines.h +++ b/src/support/nt_defines.h @@ -1,19 +1,13 @@ -/* -*- C++ -*- */ -/* This file is part of - * ====================================================== +// -*- C++ -*- +/** + * \file nt_defines.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, the High Level Word Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-1998 The LyX Team. - * - * ====================================================== - A few prototypes and definitions needed for Windows NT */ - -/* Hacks to get LyX running under Win-NT w. Cygnus b19 (steven@cs.uu.nl) */ + * Prototypes and definitions needed for Windows NT. + */ #ifndef NT_DEFINES_H #define NT_DEFINES_H - -#endif /* NT_DEFINES_H */ +#endif // NT_DEFINES_H diff --git a/src/support/os2_defines.h b/src/support/os2_defines.h index 58366418dc..70526093d5 100644 --- a/src/support/os2_defines.h +++ b/src/support/os2_defines.h @@ -1,14 +1,11 @@ /* -*- C++ -*- */ -/* This file is part of -* ====================================================== -* -* LyX, The Document Processor -* -* Copyright 1995 Matthias Ettrich -* Copyright 1995-2001 The LyX Team. -* -* ====================================================== - A few prototypes and definitions needed for OS/2 */ +/** + * \file os2_defines.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * Prototypes and definitions needed for OS/2. + */ #ifndef OS2_DEFINES_H #define OS2_DEFINES_H diff --git a/src/support/os2_errortable.h b/src/support/os2_errortable.h index fe75371dc4..d0a6236e0a 100644 --- a/src/support/os2_errortable.h +++ b/src/support/os2_errortable.h @@ -1,15 +1,12 @@ /* -*- C++ -*- */ -/* This file is part of -* ====================================================== -* -* LyX, The Document Processor -* -* Copyright 1995 Matthias Ettrich -* Copyright 1995-2001 The LyX Team. -* -* ====================================================== - A table for translating OS/2 API return code into errno. - Copied from emx library source. */ +/** + * \file os2_errortable.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * A table for translating OS/2 API return code into errno. + * Copied from emx library source. + */ #ifndef OS2_ERRORTABLE_H #define OS2_ERRORTABLE_H diff --git a/src/support/path.C b/src/support/path.C index b30bc244f3..37a44ae31a 100644 --- a/src/support/path.C +++ b/src/support/path.C @@ -1,9 +1,11 @@ /** * \file path.C - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author unknown + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS */ #include @@ -21,12 +23,12 @@ int Path::pop() // throw logical_error(); return 0; } - + if (lyx::chdir(pushedDir_)) { // should throw an exception // throw DirChangeError(); } popped_ = true; - + return 0; } diff --git a/src/support/path.h b/src/support/path.h index 4b802cc14c..bbc567ca2e 100644 --- a/src/support/path.h +++ b/src/support/path.h @@ -1,10 +1,12 @@ // -*- C++ -*- /** * \file path.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author unknown + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS */ #ifndef PATH_H @@ -40,7 +42,7 @@ public: Path(string const & path) : popped_(false) { - if (!path.empty()) { + if (!path.empty()) { pushedDir_ = lyx::getcwd(); if (pushedDir_.empty() || lyx::chdir(path)) /* FIXME: throw */; @@ -48,13 +50,13 @@ public: popped_ = true; } } - + /// set cwd to the previous value if needed ~Path() { if (!popped_) pop(); } - + /// set cwd to the previous value if needed int pop(); private: diff --git a/src/support/systemcall.C b/src/support/systemcall.C index b7040fcba3..fcc9a34bc0 100644 --- a/src/support/systemcall.C +++ b/src/support/systemcall.C @@ -1,12 +1,14 @@ /** * \file systemcall.C - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Asger Alstrup * * Interface cleaned up by - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS */ #include diff --git a/src/support/systemcall.h b/src/support/systemcall.h index a1676df8bb..647ae6f537 100644 --- a/src/support/systemcall.h +++ b/src/support/systemcall.h @@ -1,13 +1,15 @@ // -*- C++ -*- /** * \file systemcall.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Asger Alstrup * * Interface cleaned up by - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details are available in file CREDITS */ #ifndef SYSTEMCALL_H @@ -19,7 +21,7 @@ #pragma interface #endif -/** +/** * An instance of Class Systemcall represents a single child process. * * Class Systemcall uses system() to launch the child process. @@ -36,7 +38,7 @@ public: Wait, //< wait for completion before returning from startscript() DontWait //< don't wait for completion }; - + /** Start child process. * The string "what" contains a commandline with arguments separated * by spaces. diff --git a/src/support/textutils.h b/src/support/textutils.h index 2bb6faced2..3a239da133 100644 --- a/src/support/textutils.h +++ b/src/support/textutils.h @@ -1,10 +1,13 @@ // -*- C++ -*- /** * \file textutils.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author unknown + * \author Matthias Ettrich + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS */ // FIXME: I can think of a better name for this file ... diff --git a/src/support/translator.h b/src/support/translator.h index 3924956d26..17d2bae887 100644 --- a/src/support/translator.h +++ b/src/support/translator.h @@ -1,10 +1,12 @@ // -*- C++ -*- /** * \file translator.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Baruch Even + * \author Baruch Even + * + * Full author contact details are available in file CREDITS */ #ifndef TRANSLATOR_H diff --git a/src/support/types.h b/src/support/types.h index 013743b376..8a1e86af45 100644 --- a/src/support/types.h +++ b/src/support/types.h @@ -1,13 +1,15 @@ /** * \file types.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * Provide a set of typedefs for commonly used things like sizes and * indices wile trying to stay compatible with types used * by the standard containers. * * \author André Pönitz + * + * Full author contact details are available in file CREDITS */ #ifndef LYX_TYPES_H -- 2.39.2