Fixed cause of warning messages that appeared when launching KPilot the first time. This resolves bug 1870.

pull/2/head
Michele Calgaro 10 years ago
parent c3d3a9ba72
commit edc6e06a41

@ -232,14 +232,14 @@ ConduitConfigWidgetBase::ConduitConfigWidgetBase(TQWidget *parent, const char *n
mainLayout->addWidget(fConduitList); mainLayout->addWidget(fConduitList);
// Create the title // Create the title
TQVBoxLayout *vbox = new TQVBoxLayout(this, 0, KDialog::spacingHint()); TQVBoxLayout *vbox = new TQVBoxLayout(NULL, 0, KDialog::spacingHint());
// String below is just to make space; no need to translate. // String below is just to make space; no need to translate.
fTitleText = new TQLabel(CSL1("Conduit Setup - Addressbook"), this); fTitleText = new TQLabel(CSL1("Conduit Setup - Addressbook"), this);
TQFont titleFont(fTitleText->font()); TQFont titleFont(fTitleText->font());
titleFont.setBold(true); titleFont.setBold(true);
fTitleText->setFont(titleFont); fTitleText->setFont(titleFont);
vbox->addWidget(fTitleText, 0, AlignLeft); vbox->addWidget(fTitleText, 0, AlignLeft);
vbox->addWidget(new KSeparator(TQFrame::HLine|TQFrame::Plain, this)); vbox->addWidget(new KSeparator(TQFrame::HLine, this));
// Right hand column // Right hand column
fStack = new TQWidgetStack(this, "RightPart"); fStack = new TQWidgetStack(this, "RightPart");

Loading…
Cancel
Save