Remove unused function

This commit is contained in:
Richard Kimberly Heck 2020-03-16 02:18:19 -04:00
parent cf14e81412
commit 771940d5d7
2 changed files with 0 additions and 13 deletions

View File

@ -112,14 +112,6 @@ void FontList::decreasePosAfterPos(pos_type pos)
}
void FontList::setRange(pos_type startpos, pos_type endpos, Font const & font)
{
// FIXME: Optimize!!!
for (pos_type pos = startpos; pos != endpos; ++pos)
set(pos, font);
}
void FontList::set(pos_type pos, Font const & font)
{
// No need to simplify this because it will disappear

View File

@ -96,11 +96,6 @@ public:
///
void set(pos_type pos, Font const & font);
///
void setRange(
pos_type startpos,
pos_type endpos,
Font const & font);
///
void increasePosAfterPos(pos_type pos);
///
void decreasePosAfterPos(pos_type pos);