summaryrefslogtreecommitdiff
path: root/sc/inc/attrib.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-02-27 10:52:33 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-02-27 10:52:33 +0000
commit5707d45abd83d1e5ff1c38381d8adcffdb9d8e0c (patch)
tree4c5004f5aa9444afbbba15a70aac993b2383b1bb /sc/inc/attrib.hxx
parent9e03ed2e69fb6ef4b700713d6640b4afa706136c (diff)
INTEGRATION: CWS calcwarnings (1.7.322); FILE MERGED
2006/12/06 13:34:11 nn 1.7.322.1: #i69284# warning-free: core, unxlngi6
Diffstat (limited to 'sc/inc/attrib.hxx')
-rw-r--r--sc/inc/attrib.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/inc/attrib.hxx b/sc/inc/attrib.hxx
index a095f27373b3..474b4df830bf 100644
--- a/sc/inc/attrib.hxx
+++ b/sc/inc/attrib.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: attrib.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 17:23:08 $
+ * last change: $Author: vg $ $Date: 2007-02-27 11:52:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -225,15 +225,15 @@ private:
USHORT nFlags;
};
-inline ScRangeItem::ScRangeItem( const USHORT nWhich )
- : SfxPoolItem( nWhich ), nFlags( SCR_INVALID ) // == ungueltige Area
+inline ScRangeItem::ScRangeItem( const USHORT nWhichP )
+ : SfxPoolItem( nWhichP ), nFlags( SCR_INVALID ) // == ungueltige Area
{
}
-inline ScRangeItem::ScRangeItem( const USHORT nWhich,
+inline ScRangeItem::ScRangeItem( const USHORT nWhichP,
const ScRange& rRange,
const USHORT nNew )
- : SfxPoolItem( nWhich ), aRange( rRange ), nFlags( nNew )
+ : SfxPoolItem( nWhichP ), aRange( rRange ), nFlags( nNew )
{
}
@@ -281,8 +281,8 @@ public:
SCTAB* pTabArr;
};
-inline ScTableListItem::ScTableListItem( const USHORT nWhich )
- : SfxPoolItem(nWhich), nCount(0), pTabArr(NULL)
+inline ScTableListItem::ScTableListItem( const USHORT nWhichP )
+ : SfxPoolItem(nWhichP), nCount(0), pTabArr(NULL)
{}
//----------------------------------------------------------------------------