mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
0eccdd1c36
commit
4b19fa9e60
12
ChangeLog
12
ChangeLog
@ -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>
|
1999-10-02 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* src/layout.C (Add): Changed to use compare_no_case instead of
|
* src/layout.C (Add): Changed to use compare_no_case instead of
|
||||||
|
@ -4,5 +4,7 @@ Makefile.in
|
|||||||
Makefile
|
Makefile
|
||||||
config.log
|
config.log
|
||||||
config.status
|
config.status
|
||||||
|
configure
|
||||||
|
aclocal.m4
|
||||||
reLyX.1
|
reLyX.1
|
||||||
|
|
||||||
|
@ -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>
|
1999-09-22 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* Added this file. Needed by the dist targets.
|
* Added this file. Needed by the dist targets.
|
||||||
|
@ -529,7 +529,7 @@ void Menus::ShowFileMenu(FL_OBJECT *ob, long)
|
|||||||
string tmp;
|
string tmp;
|
||||||
string tmp2;
|
string tmp2;
|
||||||
string relbuf = MakeDisplayPath(filname,30);
|
string relbuf = MakeDisplayPath(filname,30);
|
||||||
tmp += ii;
|
tmp += tostr(ii);
|
||||||
tmp2 = tmp;
|
tmp2 = tmp;
|
||||||
tmp += ". " + relbuf;
|
tmp += ". " + relbuf;
|
||||||
tmp2 += string("#") + tostr(ii);
|
tmp2 += string("#") + tostr(ii);
|
||||||
@ -667,7 +667,7 @@ void Menus::ShowFileMenu2(FL_OBJECT *ob, long)
|
|||||||
string tmp;
|
string tmp;
|
||||||
string tmp2;
|
string tmp2;
|
||||||
string relbuf = MakeDisplayPath(filname,30);
|
string relbuf = MakeDisplayPath(filname,30);
|
||||||
tmp += ii;
|
tmp += tostr(ii);
|
||||||
tmp2 = tmp;
|
tmp2 = tmp;
|
||||||
tmp += ". " + relbuf;
|
tmp += ". " + relbuf;
|
||||||
tmp2 += string("#") + tostr(ii);
|
tmp2 += string("#") + tostr(ii);
|
||||||
|
@ -1414,7 +1414,7 @@ int LyXTable::RoffEndOfCell(FILE* file, int cell)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *LyXTable::getDocBookAlign(int cell, bool isColumn=false)
|
const char *LyXTable::getDocBookAlign(int cell, bool isColumn)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
if (isColumn)
|
if (isColumn)
|
||||||
|
Loading…
Reference in New Issue
Block a user