John's character.C patch (bug fix).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2604 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-08-28 11:57:10 +00:00
parent 150430ecb9
commit 786cc35da8
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-08-26 John Levon <moz@compsoc.man.ac.uk>
* character.C (getBarData): fix bar array.
2001-08-15 Angus Leeming <a.leeming@ic.ac.uk>
* ControlInset.h (apply): tentative fix for the press Apply multiple

View File

@ -126,7 +126,7 @@ vector<SizePair> const getSizeData()
vector<BarPair> const getBarData()
{
vector<BarPair> bar(6);
vector<BarPair> bar(5);
BarPair pr;
pr.first = _("No change"); pr.second = IGNORE;
@ -138,7 +138,7 @@ vector<BarPair> const getBarData()
pr.first = _("Noun"); pr.second = NOUN_TOGGLE;
bar[3] = pr;
pr.first = _("Reset"); pr.second = INHERIT;
bar[5] = pr;
bar[4] = pr;
return bar;
}