mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Reverted change to LString.h. Small fix to Buffer.C's tag_name.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1816 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5de19b909e
commit
fb28d5b938
@ -1,3 +1,10 @@
|
||||
2001-03-23 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* LString.h: removed "using std::getline"!
|
||||
|
||||
* buffer.C (tag_name): removed redundant break statements as they were
|
||||
producing lots of warnings with my compiler.
|
||||
|
||||
2001-03-23 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* LString.h: add "using std::getline" when using the real <string>.
|
||||
|
@ -15,7 +15,6 @@
|
||||
#ifndef USE_INCLUDED_STRING
|
||||
#include <string>
|
||||
using std::string;
|
||||
using std::getline
|
||||
#else
|
||||
#ifdef __STRING__
|
||||
#error The <string> header has been included before LString.h
|
||||
|
14
src/buffer.C
14
src/buffer.C
@ -2817,13 +2817,13 @@ enum PAR_TAG {
|
||||
|
||||
string tag_name(PAR_TAG const & pt) {
|
||||
switch (pt) {
|
||||
case NONE: return "!-- --"; break;
|
||||
case TT: return "tt"; break;
|
||||
case SF: return "sf"; break;
|
||||
case BF: return "bf"; break;
|
||||
case IT: return "it"; break;
|
||||
case SL: return "sl"; break;
|
||||
case EM: return "em"; break;
|
||||
case NONE: return "!-- --";
|
||||
case TT: return "tt";
|
||||
case SF: return "sf";
|
||||
case BF: return "bf";
|
||||
case IT: return "it";
|
||||
case SL: return "sl";
|
||||
case EM: return "em";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user