summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-03 16:49:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-03 20:10:17 +0100
commit0301abbbc33c794fccd4e84f75b6de4c296f957c (patch)
treec37a4e84a053f3599e3736e30a8e6f901724f34b /dbaccess
parentc087b60b0dd70c4a711ba1b4d556206a136fa468 (diff)
coverity#1219801 Uncaught exception
Change-Id: I372c1891e41510c24daf256d00f3ca98e8a374a9
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/dlg/indexfieldscontrol.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/dbaccess/source/ui/dlg/indexfieldscontrol.cxx b/dbaccess/source/ui/dlg/indexfieldscontrol.cxx
index f241969f605b..b156470efcd4 100644
--- a/dbaccess/source/ui/dlg/indexfieldscontrol.cxx
+++ b/dbaccess/source/ui/dlg/indexfieldscontrol.cxx
@@ -206,6 +206,8 @@ namespace dbaui
void IndexFieldsControl::Init(const Sequence< OUString >& _rAvailableFields)
{
+ fprintf(stderr, " _rAvailableFields len is %d\n", _rAvailableFields.getLength());
+
RemoveColumns();
// for the width: both columns together should be somewhat smaller than the whole window (without the scrollbar)
@@ -235,6 +237,9 @@ namespace dbaui
m_pSortingCell->InsertEntry(m_sAscendingText);
m_pSortingCell->InsertEntry(m_sDescendingText);
m_pSortingCell->SetHelpId( HID_DLGINDEX_INDEXDETAILS_SORTORDER );
+ m_pSortingCell->Show();
+
+ fprintf(stderr, "created m_pSortingCell %p\n", m_pSortingCell);
nFieldNameWidth -= nSortOrderColumnWidth;
}
@@ -253,7 +258,11 @@ namespace dbaui
const OUString* pFields = _rAvailableFields.getConstArray();
const OUString* pFieldsEnd = pFields + _rAvailableFields.getLength();
for (;pFields < pFieldsEnd; ++pFields)
+ {
+ fprintf(stderr, "foo is %s\n", OUStringToOString(*pFields, RTL_TEXTENCODING_UTF8).getStr());
m_pFieldNameCell->InsertEntry(*pFields);
+ }
+ m_pFieldNameCell->Show();
}
CellController* IndexFieldsControl::GetController(long _nRow, sal_uInt16 _nColumnId)