mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
add configure.m4 to the distribution ; doc.diff
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3408 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1e775a68c6
commit
24b86e64c0
@ -1,5 +1,7 @@
|
||||
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
||||
|
||||
* Makefile.am (EXTRA_DIST): add configure.m4
|
||||
|
||||
* languages: fix slovak entry
|
||||
|
||||
2002-01-16 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
|
||||
|
@ -41,7 +41,7 @@ LYXLIBDIRS = bind clipart doc examples help images kbd layouts scripts \
|
||||
|
||||
EXTRA_DIST = CREDITS chkconfig.ltx configure.cmd lyxrc.example \
|
||||
external_templates $(LYXLIBDIRS) build-listerrors \
|
||||
encodings languages symbols
|
||||
encodings languages symbols configure.m4
|
||||
|
||||
libinstalldirs:
|
||||
for dir in $(LYXLIBDIRS) ; do \
|
||||
|
@ -1,3 +1,7 @@
|
||||
2002-01-17 John Levon <moz@compsoc.man.ac.uk>
|
||||
|
||||
* FormDocument.C: enable line spacing input properly
|
||||
|
||||
2002-01-17 John Levon <moz@compsoc.man.ac.uk>
|
||||
|
||||
* forms/form_preferences.fd:
|
||||
|
@ -1001,9 +1001,9 @@ void FormDocument::class_update(BufferParams const & params)
|
||||
fl_set_button(class_->radio_doc_columns_two, 1);
|
||||
else
|
||||
fl_set_button(class_->radio_doc_columns_one, 1);
|
||||
|
||||
fl_set_input(class_->input_doc_spacing, "");
|
||||
|
||||
setEnabled(class_->input_doc_spacing, input_length);
|
||||
setEnabled(class_->input_doc_spacing, false);
|
||||
|
||||
switch (params.spacing.getSpace()) {
|
||||
case Spacing::Default: // nothing bad should happen with this
|
||||
@ -1025,6 +1025,7 @@ void FormDocument::class_update(BufferParams const & params)
|
||||
char sval[20];
|
||||
sprintf(sval,"%g",params.spacing.getValue());
|
||||
fl_set_input(class_->input_doc_spacing, sval);
|
||||
setEnabled(class_->input_doc_spacing, true);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user