mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Small fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@887 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8ed9dbabde
commit
92682d84a4
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
|||||||
|
2000-07-17 R. Lahaye <lahaye@postech.ac.kr>
|
||||||
|
|
||||||
|
* src/lyx_gui.C (LyXGUI): make sure that the height is large
|
||||||
|
enough.
|
||||||
|
|
||||||
|
2000-07-17 Kayvan Sylvan <ksylvan@synopsys.com>
|
||||||
|
|
||||||
|
* configure.in: do not forget to put a space after -isystem.
|
||||||
|
|
||||||
|
2000-07-10 Dekel Tsur <dekel@math.tau.ac.il>
|
||||||
|
|
||||||
|
* lib/kbd/arabic.kmap: a few fixes.
|
||||||
|
|
||||||
2000-07-16 Lars Gullik Bjønnes <larsbj@lyx.org>
|
2000-07-16 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* some whitespace chagnes to a number of files.
|
* some whitespace chagnes to a number of files.
|
||||||
|
@ -135,7 +135,7 @@ LIBS="$X_PRE_LIBS $LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
|
|||||||
# but since at least gcc 2.6.x supports it and it is still too old for
|
# but since at least gcc 2.6.x supports it and it is still too old for
|
||||||
# us, it seems we are safe.
|
# us, it seems we are safe.
|
||||||
if test -n "$GXX" ; then
|
if test -n "$GXX" ; then
|
||||||
X_CFLAGS=`echo ${X_CFLAGS} | sed -e 's/-I/-isystem/'`
|
X_CFLAGS=`echo ${X_CFLAGS} | sed -e 's/-I/-isystem /'`
|
||||||
fi
|
fi
|
||||||
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
\kmap x Á
|
\kmap x Á
|
||||||
\kmap c Ä
|
\kmap c Ä
|
||||||
\kmap v Ń
|
\kmap v Ń
|
||||||
\kmap b 。
|
\kmap b Ð
|
||||||
\kmap n é
|
\kmap n é
|
||||||
\kmap m É
|
\kmap m É
|
||||||
\kmap ; ă
|
\kmap ; ă
|
||||||
@ -36,39 +36,43 @@
|
|||||||
\kmap . Ň
|
\kmap . Ň
|
||||||
\kmap / Ř
|
\kmap / Ř
|
||||||
\kmap ` ;
|
\kmap ` ;
|
||||||
\kmap ` ミ
|
|
||||||
\kmap [ Ě
|
\kmap [ Ě
|
||||||
\kmap ] Ď
|
\kmap ] Ď
|
||||||
|
|
||||||
\kmap Q ォ
|
\kmap Q î
|
||||||
\kmap W ィ
|
\kmap W ë
|
||||||
\kmap E ャ
|
\kmap E ï
|
||||||
\kmap R ゥ
|
\kmap R ì
|
||||||
\kmap T 、
|
#\kmap T ¤
|
||||||
|
\kmap T ~
|
||||||
\kmap Y Ĺ
|
\kmap Y Ĺ
|
||||||
\kmap U コ
|
#\kmap U ~
|
||||||
|
\kmap U Ù
|
||||||
\kmap I ç
|
\kmap I ç
|
||||||
\kmap O Î
|
\kmap O Î
|
||||||
\kmap P ť
|
\kmap P ť
|
||||||
\kmap A ュ
|
\kmap A ð
|
||||||
\kmap S ェ
|
\kmap S í
|
||||||
\kmap D [
|
\kmap D [
|
||||||
\kmap F ]
|
\kmap F ]
|
||||||
\kmap G 」
|
#\kmap G £
|
||||||
|
\kmap G ~
|
||||||
\kmap H Ă
|
\kmap H Ă
|
||||||
\kmap J ŕ
|
\kmap J ŕ
|
||||||
\kmap K コ
|
#\kmap K º
|
||||||
|
\kmap K ~
|
||||||
\kmap L /
|
\kmap L /
|
||||||
\kmap Z ョ
|
\kmap Z ñ
|
||||||
\kmap X ッ
|
\kmap X ò
|
||||||
\kmap C {
|
\kmap C {
|
||||||
\kmap V }
|
\kmap V }
|
||||||
\kmap B 「
|
#\kmap B ¢
|
||||||
|
\kmap B ~
|
||||||
\kmap N Â
|
\kmap N Â
|
||||||
\kmap M コ
|
#\kmap M º
|
||||||
|
\kmap M ~
|
||||||
\kmap < ","
|
\kmap < ","
|
||||||
\kmap > .
|
\kmap > .
|
||||||
\kmap ? ż
|
\kmap ? ż
|
||||||
\kmap ~ ミ
|
|
||||||
\kmap { <
|
\kmap { <
|
||||||
\kmap } >
|
\kmap } >
|
||||||
|
@ -142,8 +142,11 @@ LyXGUI::LyXGUI(LyX * owner, int * argc, char * argv[], bool GUI)
|
|||||||
XSetErrorHandler(LyX_XErrHandler);
|
XSetErrorHandler(LyX_XErrHandler);
|
||||||
|
|
||||||
// A width less than 590 pops up an awkward main window
|
// A width less than 590 pops up an awkward main window
|
||||||
if (width < 590) width = 590;
|
// The minimal values of width/height (590/400) are defined in
|
||||||
|
// src/lyx.C
|
||||||
|
if (width < 590) width = 590;
|
||||||
|
if (height < 400) height = 400;
|
||||||
|
|
||||||
// If width is not set by geometry, check it against monitor width
|
// If width is not set by geometry, check it against monitor width
|
||||||
if ( !(geometryBitmask & 4) ) {
|
if ( !(geometryBitmask & 4) ) {
|
||||||
Screen * scr = DefaultScreenOfDisplay(fl_get_display());
|
Screen * scr = DefaultScreenOfDisplay(fl_get_display());
|
||||||
|
Loading…
Reference in New Issue
Block a user