On Sunday 27 November 2011 12:28:42 Yuri Chornoivan wrote:
> > Could you tell us the style that you use? I've tried with "oxygen",  
> > "phase"
> > and "qtcurve" and they all displayed the combobox as expected.
> 
> IaOra-KDE (standard Mageia/old Mandriva style)

I don't have that style installed and can't find a way to install it so could 
you test if the attached patch fixes the problem?

-- 
Regards,

Cristian Oneț
diff --git a/kmymoney/plugins/csvimport/csvdialog.cpp b/kmymoney/plugins/csvimport/csvdialog.cpp
index 6d48c03..6a6037b 100644
--- a/kmymoney/plugins/csvimport/csvdialog.cpp
+++ b/kmymoney/plugins/csvimport/csvdialog.cpp
@@ -1703,7 +1703,7 @@ IntroPage::IntroPage(QWidget *parent) : QWizardPage(parent), ui(new Ui::IntroPag
 {
   ui->setupUi(this);
   m_pageLayout = new QVBoxLayout;
-  ui->horizontalLayout->insertLayout(0, m_pageLayout, 1);
+  ui->horizontalLayout->insertLayout(0, m_pageLayout);
 
   registerField("source", ui->combobox_source, "currentIndex", SIGNAL(currentIndexChanged()));
 
@@ -1844,8 +1844,7 @@ SeparatorPage::SeparatorPage(QWidget *parent) : QWizardPage(parent), ui(new Ui::
   ui->setupUi(this);
 
   m_pageLayout = new QVBoxLayout;
-
-  ui->horizontalLayout->insertLayout(0, m_pageLayout, 1);
+  ui->horizontalLayout->insertLayout(0, m_pageLayout);
 }
 
 SeparatorPage::~SeparatorPage()
@@ -1893,8 +1892,7 @@ BankingPage::BankingPage(QWidget *parent) : QWizardPage(parent), ui(new Ui::Bank
   ui->setupUi(this);
 
   m_pageLayout = new QVBoxLayout;
-
-  ui->horizontalLayout->insertLayout(0, m_pageLayout, 1);
+  ui->horizontalLayout->insertLayout(0, m_pageLayout);
 
   ui->comboBoxBnk_numberCol->setMaxVisibleItems(12);
   ui->comboBoxBnk_dateCol->setMaxVisibleItems(12);
@@ -1932,8 +1930,7 @@ InvestmentPage::InvestmentPage(QWidget *parent) : QWizardPage(parent), ui(new Ui
   ui->setupUi(this);
   resize(638, 600);
   m_pageLayout = new QVBoxLayout;
-
-  ui->horizontalLayout->insertLayout(0, m_pageLayout, 1);
+  ui->horizontalLayout->insertLayout(0, m_pageLayout);
 
   registerField("dateCol", ui->comboBoxInv_dateCol, "currentIndex", SIGNAL(currentIndexChanged()));
   registerField("typeCol", ui->comboBoxInv_typeCol, "currentIndex", SIGNAL(currentIndexChanged()));
@@ -2062,8 +2059,7 @@ LinesDatePage::LinesDatePage(QWidget *parent) : QWizardPage(parent), ui(new Ui::
   ui->setupUi(this);
 
   m_pageLayout = new QVBoxLayout;
-
-  ui->horizontalLayout->insertLayout(0, m_pageLayout, 1);
+  ui->horizontalLayout->insertLayout(0, m_pageLayout);
 }
 
 LinesDatePage::~LinesDatePage()
@@ -2158,8 +2154,7 @@ CompletionPage::CompletionPage(QWidget* parent) : QWizardPage(parent), ui(new Ui
   ui->setupUi(this);
 
   m_pageLayout = new QVBoxLayout;
-
-  ui->horizontalLayout->insertLayout(0, m_pageLayout, 1);
+  ui->horizontalLayout->insertLayout(0, m_pageLayout);
 }
 
 CompletionPage::~CompletionPage()

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
KMyMoney-devel mailing list
KMyMoney-devel@kde.org
https://mail.kde.org/mailman/listinfo/kmymoney-devel

Reply via email to