mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
small changes to enable compilation once again of the kde frontend.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1611 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e07f7bcc50
commit
02f23c0f37
@ -1,3 +1,7 @@
|
||||
2001-02-22 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* <various>: small changes to enable compilation once again.
|
||||
|
||||
2001-02-12 John Levon <moz@compsoc.man.ac.uk>
|
||||
|
||||
* <various>: move to house style
|
||||
|
@ -45,7 +45,7 @@ void FormCitation::showCitation(InsetCommand * const inset)
|
||||
|
||||
inset_ = inset;
|
||||
readonly = lv_->buffer()->isReadonly();
|
||||
ih_ = inset_->hide.connect(slot(this,&FormCitation::hide));
|
||||
ih_ = inset_->hideDialog.connect(slot(this,&FormCitation::hide));
|
||||
params = inset->params();
|
||||
|
||||
show();
|
||||
|
@ -38,7 +38,7 @@ void FormIndex::showIndex(InsetCommand * const inset)
|
||||
|
||||
inset_ = inset;
|
||||
readonly = lv_->buffer()->isReadonly();
|
||||
ih_ = inset_->hide.connect(slot(this,&FormIndex::hide));
|
||||
ih_ = inset_->hideDialog.connect(slot(this,&FormIndex::hide));
|
||||
params = inset->params();
|
||||
|
||||
show();
|
||||
|
@ -179,7 +179,10 @@ void FormParagraph::apply()
|
||||
dialog_->getHfillBetween(),
|
||||
dialog_->getStartNewMinipage());
|
||||
|
||||
lv_->view()->update(BufferView::SELECT | BufferView::FITCUR | BufferView::CHANGE);
|
||||
lv_->view()->update(lv_->view()->text,
|
||||
BufferView::SELECT |
|
||||
BufferView::FITCUR |
|
||||
BufferView::CHANGE);
|
||||
lv_->buffer()->markDirty();
|
||||
setMinibuffer(lv_, _("Paragraph layout set"));
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ void FormRef::showRef(InsetCommand * const inset)
|
||||
|
||||
inset_ = inset;
|
||||
readonly = lv_->buffer()->isReadonly();
|
||||
ih_ = inset_->hide.connect(slot(this,&FormRef::hide));
|
||||
ih_ = inset_->hideDialog.connect(slot(this,&FormRef::hide));
|
||||
params = inset->params();
|
||||
|
||||
show();
|
||||
|
@ -53,7 +53,7 @@ void FormToc::showTOC(InsetCommand * const inset)
|
||||
return;
|
||||
|
||||
inset_ = inset;
|
||||
ih_ = inset_->hide.connect(slot(this,&FormToc::hide));
|
||||
ih_ = inset_->hideDialog.connect(slot(this,&FormToc::hide));
|
||||
params = inset->params();
|
||||
|
||||
show();
|
||||
|
@ -38,7 +38,7 @@ void FormUrl::showUrl(InsetCommand * const inset)
|
||||
|
||||
inset_ = inset;
|
||||
readonly = lv_->buffer()->isReadonly();
|
||||
ih_ = inset_->hide.connect(slot(this,&FormUrl::hide));
|
||||
ih_ = inset_->hideDialog.connect(slot(this,&FormUrl::hide));
|
||||
params = inset->params();
|
||||
|
||||
show();
|
||||
|
@ -27,6 +27,8 @@ libkde_la_OBJADD = \
|
||||
../xforms/FormInclude.lo \
|
||||
../xforms/form_include.lo \
|
||||
../xforms/FormInset.lo \
|
||||
../xforms/FormPreamble.lo \
|
||||
../xforms/form_preamble.lo \
|
||||
../xforms/FormPreferences.lo \
|
||||
../xforms/form_preferences.lo \
|
||||
../xforms/FormSplash.lo \
|
||||
|
@ -446,7 +446,7 @@ bool DocDialog::updateParams(BufferParams & params)
|
||||
break;
|
||||
}
|
||||
|
||||
if (tmpskip != params.getDefSkip()) {
|
||||
if (!(tmpskip == params.getDefSkip())) {
|
||||
redo = true;
|
||||
params.setDefSkip(tmpskip);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user