diff options
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx index 64ecc68b2bc3..954638d91316 100644 --- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx +++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx @@ -2245,7 +2245,7 @@ OUString OSelectionBrowseBox::GetCellContents(sal_Int32 nCellIndex, sal_uInt16 n sal_Int32 nIdx = m_pOrderCell->GetSelectEntryPos(); if (nIdx == LISTBOX_ENTRY_NOTFOUND) nIdx = 0; - return OUString(nIdx); + return OUString::number(nIdx); } default: return GetCellText(nCellIndex, nColId); |