mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
delete unused code.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21182 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1026a87b72
commit
b1d94940ee
@ -2067,49 +2067,6 @@ bool Paragraph::latex(Buffer const & buf,
|
||||
}
|
||||
|
||||
|
||||
namespace {
|
||||
|
||||
enum PAR_TAG {
|
||||
PAR_NONE=0,
|
||||
TT = 1,
|
||||
SF = 2,
|
||||
BF = 4,
|
||||
IT = 8,
|
||||
SL = 16,
|
||||
EM = 32
|
||||
};
|
||||
|
||||
|
||||
string tag_name(PAR_TAG const & pt) {
|
||||
switch (pt) {
|
||||
case PAR_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 "";
|
||||
}
|
||||
|
||||
|
||||
inline
|
||||
void operator|=(PAR_TAG & p1, PAR_TAG const & p2)
|
||||
{
|
||||
p1 = static_cast<PAR_TAG>(p1 | p2);
|
||||
}
|
||||
|
||||
|
||||
inline
|
||||
void reset(PAR_TAG & p1, PAR_TAG const & p2)
|
||||
{
|
||||
p1 = static_cast<PAR_TAG>(p1 & ~p2);
|
||||
}
|
||||
|
||||
} // anon
|
||||
|
||||
|
||||
bool Paragraph::emptyTag() const
|
||||
{
|
||||
for (pos_type i = 0; i < size(); ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user