Kaydet (Commit) fb5ede9e authored tarafından Luboš Luňák's avatar Luboš Luňák

add const

üst 05322eb0
......@@ -225,7 +225,7 @@ public:
void SetVersionMap( sal_uInt16 nVer,
sal_uInt16 nOldStart, sal_uInt16 nOldEnd,
sal_uInt16 *pWhichIdTab );
const sal_uInt16 *pWhichIdTab );
sal_uInt16 GetNewWhich( sal_uInt16 nOldWhich ) const;
sal_uInt16 GetVersion() const;
void SetFileFormatVersion( sal_uInt16 nFileFormatVersion );
......
......@@ -39,10 +39,10 @@ struct SfxPoolVersion_Impl
{
sal_uInt16 _nVer;
sal_uInt16 _nStart, _nEnd;
sal_uInt16* _pMap;
const sal_uInt16* _pMap;
SfxPoolVersion_Impl( sal_uInt16 nVer, sal_uInt16 nStart, sal_uInt16 nEnd,
sal_uInt16 *pMap )
const sal_uInt16 *pMap )
: _nVer( nVer ),
_nStart( nStart ),
_nEnd( nEnd ),
......
......@@ -1267,7 +1267,7 @@ void SfxItemPool::SetVersionMap
sal_uInt16 nVer, /* neue Versionsnummer */
sal_uInt16 nOldStart, /* alte erste Which-Id */
sal_uInt16 nOldEnd, /* alte letzte Which-Id */
sal_uInt16* pOldWhichIdTab /* Array mit genau dem Aufbau der Which-Ids
const sal_uInt16* pOldWhichIdTab /* Array mit genau dem Aufbau der Which-Ids
der vorhergehenden Version, in denen
die jeweils neue Which-Id steht. */
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment