]> git.lyx.org Git - features.git/commitdiff
* src/frontends/qt4/QBoxDialog.C:
authorJürgen Spitzmüller <spitz@lyx.org>
Sun, 12 Nov 2006 11:25:20 +0000 (11:25 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Sun, 12 Nov 2006 11:25:20 +0000 (11:25 +0000)
* src/frontends/qt4/QExternalDialog.C:
* src/frontends/qt4/QVSpaceDialog.C:
- fix signal/slot connection

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15879 a592a061-630c-0410-9148-cb99ea01b6c8

Status.15x
src/frontends/qt4/QBoxDialog.C
src/frontends/qt4/QExternalDialog.C
src/frontends/qt4/QVSpaceDialog.C

index c83eab0da8e64339a08191082362e11d08a71bc5..2b0f9fc87f7415432653a77e4e23cbb30680c5b7 100644 (file)
@@ -57,15 +57,15 @@ TABLE OF CONTENTS
   self-explaining. Why don't we group them in two pairs: Section Up/Down, Level
   Up/Down? The arrangement of the buttons may also give some hint to the user.
 
-- The correct list is not selected when right-clicking on a LOF or
+* The correct list is not selected when right-clicking on a LOF or
   LOT inset.
 
-- When selecting a type which *is* already selected, the content in the 
+* When selecting a type which *is* already selected, the content in the 
   browser window vanishes
 
-- The items in the treeview are editable
+* The items in the treeview are editable
 
-- When content (sections/captions) is changed, the toc/lof/lot is not properly 
+* When content (sections/captions) is changed, the toc/lof/lot is not properly 
   updated.
 
 
@@ -74,11 +74,6 @@ DIALOGS
 * when opening an already opened document (or a document with newer backup),
   the mouse pointer turns into a clock, although it waits for confirmation
 
-* broken signal/slot connection:
-  Object::connect: No such signal LengthCombo::selectionChanged(LyXLength::UNIT)
-  Object::connect:  (sender name:   'unitCO')
-  Object::connect:  (receiver name: 'QVSpaceUi')
-
 
 MATH CONTROL PANEL
 
@@ -353,3 +348,9 @@ CREDITS:
 
 * Special handling of [[...]] in text messages is disabled in messages.C
   FIXED (Georg 2006-11-12)
+
+* broken signal/slot connection:
+  Object::connect: No such signal LengthCombo::selectionChanged(LyXLength::UNIT)
+  Object::connect:  (sender name:   'unitCO')
+  Object::connect:  (receiver name: 'QVSpaceUi')
+  FIXED (JSpitzm 2006-11-12)
index 43cdfce5880acbc669a346f400404ff566c5a515..1510455ff67adf351cc38012e14180f2be913e4d 100644 (file)
@@ -39,10 +39,10 @@ QBoxDialog::QBoxDialog(QBox * form)
                form, SLOT(slotClose()));
 
     connect( widthED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
-    connect( widthUnitsLC, SIGNAL( selectionChanged(LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
+    connect( widthUnitsLC, SIGNAL( selectionChanged(lyx::LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
     connect( valignCO, SIGNAL( highlighted(const QString&) ), this, SLOT( change_adaptor() ) );
     connect( heightED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
-    connect( heightUnitsLC, SIGNAL( selectionChanged(LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
+    connect( heightUnitsLC, SIGNAL( selectionChanged(lyx::LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
     connect( restorePB, SIGNAL( clicked() ), this, SLOT( restoreClicked() ) );
     connect( typeCO, SIGNAL( activated(int) ), this, SLOT( change_adaptor() ) );
     connect( typeCO, SIGNAL( activated(int) ), this, SLOT( typeChanged(int) ) );
index 7c1b8e9cf5176d8a2ffef926f7d34ed13bda0b6f..f197066d5c4741b848171607e66f5529d3302dc1 100644 (file)
@@ -65,7 +65,7 @@ QExternalDialog::QExternalDialog(QExternal * form)
        connect( extraED, SIGNAL( textChanged(const QString&) ), this, SLOT( extraChanged(const QString&) ) );
        connect( extraFormatCO, SIGNAL( activated(const QString&) ), this, SLOT( formatChanged(const QString&) ) );
        connect( widthUnitCO, SIGNAL( activated(int) ), this, SLOT( widthUnitChanged() ) );
-       connect( heightUnitCO, SIGNAL( selectionChanged(LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
+       connect( heightUnitCO, SIGNAL( selectionChanged(lyx::LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
        connect( displayCB, SIGNAL( stateChanged(int) ), this, SLOT( change_adaptor() ) );
        connect( displayscaleED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
        connect( angleED, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
index 1187c41c8c863a2d218c5d6a8f39cd6cc1f1ec01..77cd26dffa13d0a05ab65014e74c47408bec668d 100644 (file)
@@ -46,7 +46,7 @@ QVSpaceDialog::QVSpaceDialog(QVSpace * form)
     connect( valueLE, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) );
     connect( spacingCO, SIGNAL( activated(int) ), this, SLOT( enableCustom(int) ) );
     connect( keepCB, SIGNAL( clicked() ), this, SLOT( change_adaptor() ) );
-    connect( unitCO, SIGNAL( selectionChanged(LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
+    connect( unitCO, SIGNAL( selectionChanged(lyx::LyXLength::UNIT) ), this, SLOT( change_adaptor() ) );
 
        valueLE->setValidator(unsignedLengthValidator(valueLE));
 }