[Libreoffice-commits] core.git: sc/source
Caolán McNamara
caolanm at redhat.com
Fri Aug 9 04:25:50 PDT 2013
sc/source/ui/dbgui/scuiasciiopt.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit a783c7ce72c6dc306dcd39868c9bf41d9dc886e0
Author: Caolán McNamara <caolanm at redhat.com>
Date: Fri Aug 9 12:24:53 2013 +0100
Resolves: fdo#67947 charsets not sorted in csv dialog
regression since 538ba011d7b598737c898cfcce1e0d7b00b40c84
Change-Id: I260819681dfd47435d8edf5fd97c873238c5d808
diff --git a/sc/source/ui/dbgui/scuiasciiopt.cxx b/sc/source/ui/dbgui/scuiasciiopt.cxx
index 07d063a..fd44245 100644
--- a/sc/source/ui/dbgui/scuiasciiopt.cxx
+++ b/sc/source/ui/dbgui/scuiasciiopt.cxx
@@ -252,8 +252,10 @@ ScImportAsciiDlg::ScImportAsciiDlg( Window* pParent,String aDatName,
{
get(pFtCharSet, "textcharset");
get(pLbCharSet, "charset");
+ pLbCharSet->SetStyle(pLbCharSet->GetStyle() | WB_SORT);
get(pFtCustomLang, "textlanguage");
get(pLbCustomLang, "language");
+ pLbCustomLang->SetStyle(pLbCustomLang->GetStyle() | WB_SORT);
get(pFtRow, "textfromrow");
get(pNfRow, "fromrow");
get(pRbFixed, "tofixedwidth");
More information about the Libreoffice-commits
mailing list