A few updates and fixes (nothing interestring really)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@167 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 1999-10-04 13:04:05 +00:00
parent 0eccdd1c36
commit 4b19fa9e60
6 changed files with 1046 additions and 1086 deletions

View File

@ -1,3 +1,15 @@
1999-10-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/table.C (getDocBookAlign): remove bad default value for
isColumn parameter.
* src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
shortcut.
(ShowFileMenu2): ditto.
* lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
of files to ignore.
1999-10-02 Lars Gullik Bjønnes <larsbj@lyx.org>
* src/layout.C (Add): Changed to use compare_no_case instead of

View File

@ -4,5 +4,7 @@ Makefile.in
Makefile
config.log
config.status
configure
aclocal.m4
reLyX.1

View File

@ -1,3 +1,7 @@
1999-10-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* cs.po: Update from Ludek Brukner
1999-09-22 Lars Gullik Bjønnes <larsbj@lyx.org>
* Added this file. Needed by the dist targets.

2108
po/cs.po

File diff suppressed because it is too large Load Diff

View File

@ -529,7 +529,7 @@ void Menus::ShowFileMenu(FL_OBJECT *ob, long)
string tmp;
string tmp2;
string relbuf = MakeDisplayPath(filname,30);
tmp += ii;
tmp += tostr(ii);
tmp2 = tmp;
tmp += ". " + relbuf;
tmp2 += string("#") + tostr(ii);
@ -667,7 +667,7 @@ void Menus::ShowFileMenu2(FL_OBJECT *ob, long)
string tmp;
string tmp2;
string relbuf = MakeDisplayPath(filname,30);
tmp += ii;
tmp += tostr(ii);
tmp2 = tmp;
tmp += ". " + relbuf;
tmp2 += string("#") + tostr(ii);

View File

@ -1414,7 +1414,7 @@ int LyXTable::RoffEndOfCell(FILE* file, int cell)
return ret;
}
const char *LyXTable::getDocBookAlign(int cell, bool isColumn=false)
const char *LyXTable::getDocBookAlign(int cell, bool isColumn)
{
int i;
if (isColumn)