[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source
Caolán McNamara
caolanm at redhat.com
Fri Aug 9 06:02:15 PDT 2013
sc/source/ui/dbgui/scuiasciiopt.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit cb991c189575fdd89b9f985ecbff3a200ffc5ea1
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
(cherry picked from commit a783c7ce72c6dc306dcd39868c9bf41d9dc886e0)
Reviewed-on: https://gerrit.libreoffice.org/5326
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Eike Rathke <erack at redhat.com>
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