View | Details | Raw Unified | Return to issue 18988
Collapse All | Expand All

(-)sc/inc/tabopparams.hxx (-1 / +1 lines)
Lines 120-126 Link Here
120
        return *this;
120
        return *this;
121
    }
121
    }
122
122
123
    operator ==( const ScInterpreterTableOpParams& r )
123
    BOOL operator ==( const ScInterpreterTableOpParams& r )
124
    {
124
    {
125
        return
125
        return
126
            bValid && r.bValid &&
126
            bValid && r.bValid &&
(-)sc/source/core/data/drwlayer.cxx (-1 / +1 lines)
Lines 1660-1666 Link Here
1660
	return aName;
1660
	return aName;
1661
}
1661
}
1662
1662
1663
inline IsNamedObject( SdrObject* pObj, const String& rName )
1663
inline BOOL IsNamedObject( SdrObject* pObj, const String& rName )
1664
{
1664
{
1665
	//	TRUE if rName is the object's Name or PersistName
1665
	//	TRUE if rName is the object's Name or PersistName
1666
	//	(used to find a named object)
1666
	//	(used to find a named object)
(-)sc/source/filter/excel/excrecds.cxx (-1 / +1 lines)
Lines 2572-2578 Link Here
2572
			INT32					nH;
2572
			INT32					nH;
2573
			INT32					nW;
2573
			INT32					nW;
2574
		};
2574
		};
2575
		static const				nAnzSizes = 42;
2575
		static const UINT16		nAnzSizes = 42;
2576
		static const PAPER_SIZE		pPS[ nAnzSizes ] =
2576
		static const PAPER_SIZE		pPS[ nAnzSizes ] =
2577
		{
2577
		{
2578
            { 0,                        0                           },  // undefined
2578
            { 0,                        0                           },  // undefined
(-)sc/source/filter/excel/impop.cxx (-1 / +1 lines)
Lines 1221-1227 Link Here
1221
		INT32		nH;
1221
		INT32		nH;
1222
		INT32		nW;
1222
		INT32		nW;
1223
	};
1223
	};
1224
	static const	nAnzSizes = 42;
1224
	static const	UINT16 nAnzSizes = 42;
1225
	static SvxPaper	pSvxPS[ nAnzSizes ] =
1225
	static SvxPaper	pSvxPS[ nAnzSizes ] =
1226
	{
1226
	{
1227
		SVX_PAPER_USER,		// undefined
1227
		SVX_PAPER_USER,		// undefined
(-)sc/source/filter/excel/tokstack.cxx (-2 / +2 lines)
Lines 132-142 Link Here
132
132
133
	nP_Ext = 32;
133
	nP_Ext = 32;
134
	ppP_Ext = new EXTCONT*[ nP_Ext ];
134
	ppP_Ext = new EXTCONT*[ nP_Ext ];
135
	memset( ppP_Ext, NULL, sizeof( EXTCONT* ) * nP_Ext );
135
	memset( ppP_Ext, 0, sizeof( EXTCONT* ) * nP_Ext );
136
136
137
	nP_Nlf = 16;
137
	nP_Nlf = 16;
138
	ppP_Nlf = new NLFCONT*[ nP_Nlf ];
138
	ppP_Nlf = new NLFCONT*[ nP_Nlf ];
139
	memset( ppP_Nlf, NULL, sizeof( NLFCONT* ) * nP_Nlf );
139
	memset( ppP_Nlf, 0, sizeof( NLFCONT* ) * nP_Nlf );
140
140
141
	pScToken = new ScTokenArray;
141
	pScToken = new ScTokenArray;
142
142
(-)sc/source/filter/xml/xmlsubti.hxx (-3 / +3 lines)
Lines 98-106 Link Here
98
98
99
class ScXMLImport;
99
class ScXMLImport;
100
100
101
const nDefaultRowCount = 20;
101
const sal_Int32 nDefaultRowCount = 20;
102
const nDefaultColCount = 20;
102
const sal_Int32 nDefaultColCount = 20;
103
const nDefaultTabCount = 10;
103
const sal_Int32 nDefaultTabCount = 10;
104
104
105
typedef std::vector<sal_Int32> ScMysalIntVec;
105
typedef std::vector<sal_Int32> ScMysalIntVec;
106
typedef std::list<sal_Int32> ScMysalIntList;
106
typedef std::list<sal_Int32> ScMysalIntList;
(-)sc/source/ui/docshell/docsh8.cxx (-2 / +2 lines)
Lines 454-465 Link Here
454
454
455
// -----------------------------------------------------------------------
455
// -----------------------------------------------------------------------
456
456
457
inline IsAsciiDigit( sal_Unicode c )
457
inline BOOL IsAsciiDigit( sal_Unicode c )
458
{
458
{
459
	return 0x31 <= c && c <= 0x39;
459
	return 0x31 <= c && c <= 0x39;
460
}
460
}
461
461
462
inline IsAsciiAlpha( sal_Unicode c )
462
inline BOOL IsAsciiAlpha( sal_Unicode c )
463
{
463
{
464
	return (0x41 <= c && c <= 0x5a) || (0x61 <= c && c <= 0x7a);
464
	return (0x41 <= c && c <= 0x5a) || (0x61 <= c && c <= 0x7a);
465
}
465
}

Return to issue 18988