From f90b39698e138cbacc59b84fdc4ddc09ab4ec037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Mon, 5 Feb 2007 10:04:56 +0000 Subject: [PATCH] * 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 --- src/frontends/qt4/QGraphicsDialog.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/QGraphicsDialog.C b/src/frontends/qt4/QGraphicsDialog.C index 7567c5b15b..29c87c8a07 100644 --- a/src/frontends/qt4/QGraphicsDialog.C +++ b/src/frontends/qt4/QGraphicsDialog.C @@ -53,13 +53,13 @@ QGraphicsDialog::QGraphicsDialog(QGraphics * form) this, SLOT( change_adaptor() ) ); connect(subcaption, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) ); - connect(subfigure, SIGNAL( clicked() ), + connect(subfigure, SIGNAL( toggled(bool on) ), this, SLOT( change_adaptor() ) ); connect(latexoptions, SIGNAL( textChanged(const QString&) ), this, SLOT( change_adaptor() ) ); connect(clip, SIGNAL( stateChanged(int) ), this, SLOT( change_adaptor() ) ); - connect(displayGB, SIGNAL( clicked() ), + connect(displayGB, SIGNAL( toggled(bool on) ), this, SLOT( change_adaptor() ) ); connect(showCB, SIGNAL( currentIndexChanged(int) ), this, SLOT( change_adaptor() ) );