mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
small bullet changes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5614 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
71a377eab3
commit
ec6f1da6b2
@ -1,3 +1,8 @@
|
||||
2002-11-12 Edwin Leuven <leuven@fee.uva.nl>
|
||||
|
||||
* QDocumentDialog.C: enable apply on change
|
||||
* QBrowseBox.C: remove qWarning
|
||||
|
||||
2002-11-12 Edwin Leuven <leuven@fee.uva.nl>
|
||||
|
||||
* BulletsModule.C: more bullet changes
|
||||
|
@ -269,7 +269,6 @@ void QBrowseBox::resizeEvent(QResizeEvent * e)
|
||||
|
||||
void QBrowseBox::contentsMouseMoveEvent(QMouseEvent * e)
|
||||
{
|
||||
qWarning("mouseMoveEvent");
|
||||
int x = e->pos().x();
|
||||
int y = e->pos().y();
|
||||
|
||||
|
@ -255,12 +255,19 @@ QDocumentDialog::QDocumentDialog( QDocument * form)
|
||||
this , SLOT( change_adaptor() ) );
|
||||
connect( bulletsModule->bulletsize1CO, SIGNAL( activated(int) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
/*
|
||||
connect( bulletsModule->levelSP, SIGNAL( valueChanged(int) ),
|
||||
this , SLOT( setBullet(int) ) );
|
||||
connect( bulletsModule->levelSP, SIGNAL( valueChanged(int) ),
|
||||
this , SLOT( setBulletSize(int) ) );
|
||||
*/
|
||||
connect( bulletsModule->bullet2LE, SIGNAL( textChanged(const QString&) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
connect( bulletsModule->bulletsize2CO, SIGNAL( activated(int) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
connect( bulletsModule->bullet3LE, SIGNAL( textChanged(const QString&) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
connect( bulletsModule->bulletsize3CO, SIGNAL( activated(int) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
connect( bulletsModule->bullet4LE, SIGNAL( textChanged(const QString&) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
connect( bulletsModule->bulletsize4CO, SIGNAL( activated(int) ),
|
||||
this , SLOT( change_adaptor() ) );
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user