summaryrefslogtreecommitdiff
path: root/sw/source/ui/fldui/DropDownFieldDialog.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-08-23 07:52:00 +0000
committerRüdiger Timm <rt@openoffice.org>2004-08-23 07:52:00 +0000
commit379f96ce569d4e0db8dfcb5a1557928b92230b0b (patch)
tree8e53cf88e359ea54982263818681ebdc3ee4bff0 /sw/source/ui/fldui/DropDownFieldDialog.cxx
parent6b29e5f91fb29c64f336da54a70d9b5002d54325 (diff)
INTEGRATION: CWS tune03 (1.2.500); FILE MERGED
2004/07/19 19:11:14 mhu 1.2.500.1: #i29979# Added SW_DLLPUBLIC/PRIVATE (see swdllapi.h) to exported symbols/classes.
Diffstat (limited to 'sw/source/ui/fldui/DropDownFieldDialog.cxx')
-rw-r--r--sw/source/ui/fldui/DropDownFieldDialog.cxx14
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());