diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-07-06 20:13:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-07-06 20:13:20 +0900 |
commit | edc6e06a41dbcdef0ae6eb3f3f00564e88079638 (patch) | |
tree | b61ae6ebd095ff1e373aa9409b90c4414b12a1f8 | |
parent | c3d3a9ba72c369a275b9aa48883115596f22934d (diff) | |
download | kpilot-edc6e06a41dbcdef0ae6eb3f3f00564e88079638.tar.gz kpilot-edc6e06a41dbcdef0ae6eb3f3f00564e88079638.zip |
Fixed cause of warning messages that appeared when launching KPilot the first time. This resolves bug 1870.
-rw-r--r-- | kpilot/conduitConfigDialog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpilot/conduitConfigDialog.cc b/kpilot/conduitConfigDialog.cc index 5fd8494..3b86019 100644 --- a/kpilot/conduitConfigDialog.cc +++ b/kpilot/conduitConfigDialog.cc @@ -232,14 +232,14 @@ ConduitConfigWidgetBase::ConduitConfigWidgetBase(TQWidget *parent, const char *n mainLayout->addWidget(fConduitList); // 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. fTitleText = new TQLabel(CSL1("Conduit Setup - Addressbook"), this); TQFont titleFont(fTitleText->font()); titleFont.setBold(true); fTitleText->setFont(titleFont); vbox->addWidget(fTitleText, 0, AlignLeft); - vbox->addWidget(new KSeparator(TQFrame::HLine|TQFrame::Plain, this)); + vbox->addWidget(new KSeparator(TQFrame::HLine, this)); // Right hand column fStack = new TQWidgetStack(this, "RightPart"); |