mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-09 10:47:57 +00:00
* src/frontends/qt4/QGraphicsDialog.C:
- use signals that are known to Qt 4.0 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17050 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
27b6dcf734
commit
f90b39698e
@ -53,13 +53,13 @@ QGraphicsDialog::QGraphicsDialog(QGraphics * form)
|
|||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
connect(subcaption, SIGNAL( textChanged(const QString&) ),
|
connect(subcaption, SIGNAL( textChanged(const QString&) ),
|
||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
connect(subfigure, SIGNAL( clicked() ),
|
connect(subfigure, SIGNAL( toggled(bool on) ),
|
||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
connect(latexoptions, SIGNAL( textChanged(const QString&) ),
|
connect(latexoptions, SIGNAL( textChanged(const QString&) ),
|
||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
connect(clip, SIGNAL( stateChanged(int) ),
|
connect(clip, SIGNAL( stateChanged(int) ),
|
||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
connect(displayGB, SIGNAL( clicked() ),
|
connect(displayGB, SIGNAL( toggled(bool on) ),
|
||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
connect(showCB, SIGNAL( currentIndexChanged(int) ),
|
connect(showCB, SIGNAL( currentIndexChanged(int) ),
|
||||||
this, SLOT( change_adaptor() ) );
|
this, SLOT( change_adaptor() ) );
|
||||||
|
Loading…
Reference in New Issue
Block a user