[Uml-devel] kdesdk/umbrello/umbrello/dialogs
Oliver Kellogg
okellogg at users.sourceforge.net
Mon Oct 25 15:24:03 UTC 2004
CVS commit by okellogg:
Signature of slotUpdateChildObject has changed.
M +7 -4 classpropdlg.cpp 1.20
--- kdesdk/umbrello/umbrello/dialogs/classpropdlg.cpp #1.19:1.20
@@ -180,5 +180,6 @@ void ClassPropDlg::setupPages(UMLObject
QHBoxLayout * attLayout = new QHBoxLayout(newPage);
attLayout -> addWidget(m_pAttPage);
- connect(m_pAttPage, SIGNAL(sigUpdateChildObject(int)), this, SLOT(slotUpdateChildObject(int)));
+ connect(m_pAttPage, SIGNAL(sigUpdateChildObject(int)),
+ this, SLOT(slotUpdateChildObject(UML::IDType)));
}
@@ -190,5 +191,6 @@ void ClassPropDlg::setupPages(UMLObject
QHBoxLayout* pOpsLayout = new QHBoxLayout(newPage);
pOpsLayout -> addWidget(m_pOpsPage);
- connect(m_pOpsPage, SIGNAL(sigUpdateChildObject(int)), this, SLOT(slotUpdateChildObject(int)));
+ connect(m_pOpsPage, SIGNAL(sigUpdateChildObject(int)),
+ this, SLOT(slotUpdateChildObject(UML::IDType)));
}
@@ -199,5 +201,6 @@ void ClassPropDlg::setupPages(UMLObject
QHBoxLayout* templatesLayout = new QHBoxLayout(newPage);
templatesLayout->addWidget(m_pTemplatePage);
- connect(m_pTemplatePage, SIGNAL(sigUpdateChildObject(int)), this, SLOT(slotUpdateChildObject(int)));
+ connect(m_pTemplatePage, SIGNAL(sigUpdateChildObject(int)),
+ this, SLOT(slotUpdateChildObject(UML::IDType)));
}
if (c->getBaseType() == Uml::ot_Enum) {
@@ -208,5 +211,5 @@ void ClassPropDlg::setupPages(UMLObject
enumLiteralsLayout->addWidget(m_pEnumLiteralPage);
connect(m_pEnumLiteralPage, SIGNAL(sigUpdateChildObject(int)),
- this, SLOT(slotUpdateChildObject(int)));
+ this, SLOT(slotUpdateChildObject(UML::IDType)));
}
if (c->getBaseType() == Uml::ot_Package ) {
More information about the umbrello-devel
mailing list