--- as_panel.cpp 2003/02/12 16:31:43 1.4
+++ as_panel.cpp 2003/02/12 19:33:05 1.5
@@ -207,10 +207,12 @@
m_pCancelbutton->setDefault(true);
m_pVlayout->addLayout(m_pButtlay);
- // Connect our signals to slots, the only one we write is 'apply(void)'
+ // Connect our signals to slots, accept() and reject() are Qt implicit
connect(m_pOkaybutton, SIGNAL(clicked()), this, SLOT(accept()));
connect(m_pApplybutton, SIGNAL(clicked()), this, SLOT(apply()));
connect(m_pCancelbutton, SIGNAL(clicked()), this, SLOT(reject()));
+ connect(m_pCorbacheck, SIGNAL(toggled(bool)), this, SLOT(enableCorba(bool)));
+ connect(m_pSoapcheck, SIGNAL(toggled(bool)), this, SLOT(enableSoap(bool)));
this->textChange();
this->resize(QSize(400, 264).expandedTo(minimumSizeHint()));
}
|