summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-05-10 15:48:28 +0000
committerKurt Zenker <kz@openoffice.org>2007-05-10 15:48:28 +0000
commit5ac2b00f4fcecada6b44b7d7fbc0a7fea4dc3f48 (patch)
treef5240de4c3b4b811cc44f28160aacbb50877fa17 /sc/source
parent8f6e82dbae4aaa2a54b376fe336f09081b903aa1 (diff)
INTEGRATION: CWS pchfix04 (1.22.102); FILE MERGED
2007/04/26 05:41:23 hjs 1.22.102.2: RESYNC: (1.22-1.23); FILE MERGED 2007/02/05 08:35:21 os 1.22.102.1: #i73604# usage of ITEMID_* removed
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/excel/xicontent.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/sc/source/filter/excel/xicontent.cxx b/sc/source/filter/excel/xicontent.cxx
index 7f51969fc51f..a8042fef73fe 100644
--- a/sc/source/filter/excel/xicontent.cxx
+++ b/sc/source/filter/excel/xicontent.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xicontent.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: vg $ $Date: 2007-02-27 12:26:20 $
+ * last change: $Author: kz $ $Date: 2007-05-10 16:48:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -68,7 +68,6 @@
#ifndef _EEITEM_HXX
#include <svx/eeitem.hxx>
#endif
-#define ITEMID_FIELD EE_FEATURE_FIELD
#ifndef _SFXINTITEM_HXX
#include <svtools/intitem.hxx>
#endif
@@ -264,12 +263,12 @@ void lclInsertUrl( const XclImpRoot& rRoot, const String& rUrl, SCCOL nScCol, SC
if( pEditObj )
{
rEE.SetText( *pEditObj );
- rEE.QuickInsertField( SvxFieldItem( aUrlField ), ESelection( 0, 0, 0xFFFF, 0 ) );
+ rEE.QuickInsertField( SvxFieldItem( aUrlField, EE_FEATURE_FIELD ), ESelection( 0, 0, 0xFFFF, 0 ) );
}
else
{
rEE.SetText( EMPTY_STRING );
- rEE.QuickInsertField( SvxFieldItem( aUrlField ), ESelection() );
+ rEE.QuickInsertField( SvxFieldItem( aUrlField, EE_FEATURE_FIELD ), ESelection() );
if( const ScPatternAttr* pPattern = rDoc.GetPattern( aScPos.Col(), aScPos.Row(), nScTab ) )
{
SfxItemSet aItemSet( rEE.GetEmptyItemSet() );