Index: ossp-pkg/as/as-gui/as_panel.cpp RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_panel.cpp,v rcsdiff -q -kk '-r1.9' '-r1.10' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_panel.cpp,v' 2>/dev/null --- as_panel.cpp 2003/02/14 19:27:03 1.9 +++ as_panel.cpp 2003/02/17 17:18:43 1.10 @@ -40,8 +40,8 @@ // Constructs a Prefpanel as a child of 'pParent', with the // name 'kszName' and widget flags set to 'Flags'. // -// The dialog will by default be modeless, unless you set 'bModal' to -// true to construct a modal dialog. +// The dialog will by default be modal, unless you set 'bModal' to +// false to construct a modeless dialog. // Prefpanel::Prefpanel(QWidget *pParent, const char *kszName, bool bModal, WFlags Flags) : QDialog(pParent, kszName, bModal, Flags) @@ -49,8 +49,8 @@ if (!kszName) this->setName("Prefpanel"); - setSizeGripEnabled(false); - setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5, + this->setSizeGripEnabled(false); + this->setSizePolicy(QSizePolicy((QSizePolicy::SizeType)5, (QSizePolicy::SizeType)5, 0, 0, sizePolicy().hasHeightForWidth())); m_pVlayout = new QVBoxLayout(this, 11, 6, "Formlayout"); @@ -220,7 +220,7 @@ // // Sets the strings of the subwidgets using the current language // -void Prefpanel::textChange() +void Prefpanel::textChange(void) { this->setCaption(tr("AS Applicate Preferences", "Personal preferences are persistent across sessions")); @@ -250,7 +250,7 @@ QToolTip::add(m_pUserline, tr("The user name", "Comment for toolTip Userline")); QToolTip::add(m_pHomeline, tr("The home directory", "Comment for toolTip Homeline")); - m_pRembox->setTitle(tr("Remote host names", "Comment for Genbox")); + m_pRembox->setTitle(tr("Remote host names", "Comment for Rembox")); m_pCorbalabel->setText(tr("CORBA host", "Comment for Corbalabel")); m_pSoaplabel->setText(tr("SOAP host", "Comment for Soaplabel")); QToolTip::add(m_pCorbaline, tr("The CORBA host name", "Comment for toolTip Corbaline")); Index: ossp-pkg/as/as-gui/as_panel.h RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/as_panel.h,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/as/as-gui/as_panel.h,v' 2>/dev/null --- as_panel.h 2003/02/14 17:31:55 1.8 +++ as_panel.h 2003/02/17 17:18:43 1.9 @@ -34,8 +34,6 @@ #include #include - -#include #include #include #include