]> git.lyx.org Git - features.git/commitdiff
small bullet changes
authorEdwin Leuven <e.leuven@gmail.com>
Tue, 12 Nov 2002 10:32:20 +0000 (10:32 +0000)
committerEdwin Leuven <e.leuven@gmail.com>
Tue, 12 Nov 2002 10:32:20 +0000 (10:32 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5614 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/ChangeLog
src/frontends/qt2/QBrowseBox.C
src/frontends/qt2/QDocumentDialog.C

index ebafb439df8824bda499f4f8deed54564cd038c4..8829eba9bccc6cd597c89569690e90e838b5cf43 100644 (file)
@@ -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
index 7a21ac7ac86dc07ff3ef7d8ae5271fad691553bb..a76dd75069821a76fc32497931e9b0927391475e 100644 (file)
@@ -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();
        
index c93c874acf302a90d5e4081920de54f4eec91023..fe9d4bc4d0e6f584ee34ad875f5e1e76d5f7783a 100644 (file)
@@ -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() ) );
+
 }