diff options
Diffstat (limited to 'sw/source/ui/fldui/DropDownFieldDialog.cxx')
-rw-r--r-- | sw/source/ui/fldui/DropDownFieldDialog.cxx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sw/source/ui/fldui/DropDownFieldDialog.cxx b/sw/source/ui/fldui/DropDownFieldDialog.cxx index 3b0a75c99b0b..d2fd83f05732 100644 --- a/sw/source/ui/fldui/DropDownFieldDialog.cxx +++ b/sw/source/ui/fldui/DropDownFieldDialog.cxx @@ -2,9 +2,9 @@ * * $RCSfile: DropDownFieldDialog.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: hr $ $Date: 2003-06-30 15:55:10 $ + * last change: $Author: rt $ $Date: 2004-08-23 08:52:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,6 +59,10 @@ * ************************************************************************/ +#ifdef SW_DLLIMPLEMENTATION +#undef SW_DLLIMPLEMENTATION +#endif + #pragma hdrstop @@ -87,6 +91,8 @@ #include <DropDownFieldDialog.hrc> #endif +using com::sun::star::uno::Sequence; + /*-------------------------------------------------------------------- Beschreibung: Feldeinfuegen bearbeiten --------------------------------------------------------------------*/ @@ -126,8 +132,8 @@ sw::DropDownFieldDialog::DropDownFieldDialog( Window *pParent, SwWrtShell &rS, String sTitle = GetText(); sTitle += pDropField->GetPar2(); SetText(sTitle); - Sequence<OUString> aItems = pDropField->GetItemSequence(); - const OUString* pArray = aItems.getConstArray(); + Sequence<rtl::OUString> aItems = pDropField->GetItemSequence(); + const rtl::OUString* pArray = aItems.getConstArray(); for(sal_Int32 i = 0; i < aItems.getLength(); i++) aListItemsLB.InsertEntry(pArray[i]); aListItemsLB.SelectEntry(pDropField->GetSelectedItem()); |