mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 11:08:41 +00:00
Whitespace only.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9944 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
33f38a6112
commit
270bb796aa
@ -1,12 +1,12 @@
|
|||||||
2005-05-09 Michael Schmitt <michael.schmitt@teststep.org>
|
2005-05-09 Michael Schmitt <michael.schmitt@teststep.org>
|
||||||
|
|
||||||
* *.C: strip "LyX: " prefix from dialog titles; harmonize
|
* *.C: strip "LyX: " prefix from dialog titles; harmonize
|
||||||
dialog titles with menu entries and xforms frontend; fix
|
dialog titles with menu entries and xforms frontend; fix
|
||||||
capitalization
|
capitalization
|
||||||
|
|
||||||
2005-05-07 Angus Leeming <leeming@lyx.org>
|
2005-05-07 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* Alert_pimpl.C (prompt_pimpl, warning_pimpl, error_pimpl)
|
* Alert_pimpl.C (prompt_pimpl, warning_pimpl, error_pimpl)
|
||||||
(information_pimpl, askForText_pimpl): make these warning dialogs
|
(information_pimpl, askForText_pimpl): make these warning dialogs
|
||||||
modal with respect to the calling dialog, rather than with respect
|
modal with respect to the calling dialog, rather than with respect
|
||||||
to the main window.
|
to the main window.
|
||||||
@ -74,7 +74,7 @@
|
|||||||
|
|
||||||
* QTabularDialog.C: correct handling of the LFUN_UNSET_*
|
* QTabularDialog.C: correct handling of the LFUN_UNSET_*
|
||||||
functions within longtabular.
|
functions within longtabular.
|
||||||
|
|
||||||
* ui/QTabularDialogBase.ui: add tooltips to longtabular tab.
|
* ui/QTabularDialogBase.ui: add tooltips to longtabular tab.
|
||||||
|
|
||||||
2005-04-28 Angus Leeming <leeming@lyx.org>
|
2005-04-28 Angus Leeming <leeming@lyx.org>
|
||||||
|
@ -514,7 +514,7 @@ void QDocument::update_contents()
|
|||||||
// numbering
|
// numbering
|
||||||
int const min_toclevel = controller().textClass().min_toclevel();
|
int const min_toclevel = controller().textClass().min_toclevel();
|
||||||
int const max_toclevel = controller().textClass().max_toclevel();
|
int const max_toclevel = controller().textClass().max_toclevel();
|
||||||
if (min_toclevel != LyXLayout::NOT_IN_TOC)
|
if (min_toclevel != LyXLayout::NOT_IN_TOC)
|
||||||
dialog_->numberingModule->setEnabled(true);
|
dialog_->numberingModule->setEnabled(true);
|
||||||
else {
|
else {
|
||||||
dialog_->numberingModule->setEnabled(false);
|
dialog_->numberingModule->setEnabled(false);
|
||||||
|
@ -379,7 +379,7 @@ void QDocumentDialog::classChanged()
|
|||||||
|
|
||||||
if (form_->controller().loadTextclass(tc)) {
|
if (form_->controller().loadTextclass(tc)) {
|
||||||
params.textclass = tc;
|
params.textclass = tc;
|
||||||
if (lyxrc.auto_reset_options)
|
if (lyxrc.auto_reset_options)
|
||||||
params.useClassDefaults();
|
params.useClassDefaults();
|
||||||
form_->update_contents();
|
form_->update_contents();
|
||||||
} else {
|
} else {
|
||||||
@ -407,7 +407,7 @@ void QDocumentDialog::updateNumbering()
|
|||||||
for ( ; cit != end ; ++cit) {
|
for ( ; cit != end ; ++cit) {
|
||||||
int const toclevel = (*cit)->toclevel;
|
int const toclevel = (*cit)->toclevel;
|
||||||
if (toclevel != LyXLayout::NOT_IN_TOC) {
|
if (toclevel != LyXLayout::NOT_IN_TOC) {
|
||||||
item = new QListViewItem(numberingModule->tocLV,
|
item = new QListViewItem(numberingModule->tocLV,
|
||||||
item, qt_((*cit)->name()));
|
item, qt_((*cit)->name()));
|
||||||
item->setText(1, (toclevel <= depth) ? yes : no);
|
item->setText(1, (toclevel <= depth) ? yes : no);
|
||||||
item->setText(2, (toclevel <= toc) ? yes : no);
|
item->setText(2, (toclevel <= toc) ? yes : no);
|
||||||
|
@ -256,7 +256,7 @@ void start(string const & batch, vector<string> const & files)
|
|||||||
void sync_events()
|
void sync_events()
|
||||||
{
|
{
|
||||||
// This is the ONLY place where processEvents may be called.
|
// This is the ONLY place where processEvents may be called.
|
||||||
// During screen update/ redraw, this method is disabled to
|
// During screen update/ redraw, this method is disabled to
|
||||||
// prevent keyboard events being handed to the LyX core, where
|
// prevent keyboard events being handed to the LyX core, where
|
||||||
// they could cause re-entrant calls to screen update.
|
// they could cause re-entrant calls to screen update.
|
||||||
#if QT_VERSION >= 0x030100
|
#if QT_VERSION >= 0x030100
|
||||||
|
Loading…
Reference in New Issue
Block a user