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

(-)source/cfgmerge.cxx (-2 / +2 lines)
Lines 68-75 Link Here
68
#include "tokens.h"
68
#include "tokens.h"
69
#include "utf8conv.hxx"
69
#include "utf8conv.hxx"
70
70
71
extern "C" { yyerror( char * ); }
71
extern "C" { int yyerror( char * ); }
72
extern "C" { YYWarning( char * ); }
72
extern "C" { int YYWarning( char * ); }
73
73
74
// defines to parse command line
74
// defines to parse command line
75
#define STATE_NON  		0x0001
75
#define STATE_NON  		0x0001
(-)source/export.cxx (-2 / +2 lines)
Lines 67-74 Link Here
67
#include "tokens.h"
67
#include "tokens.h"
68
#include "utf8conv.hxx"
68
#include "utf8conv.hxx"
69
69
70
extern "C" { yyerror( char * ); }
70
extern "C" { int yyerror( char * ); }
71
extern "C" { YYWarning( char * ); }
71
extern "C" { int YYWarning( char * ); }
72
72
73
Export *pExport = 0L;
73
Export *pExport = 0L;
74
74
(-)source/wrdtrans.cxx (-1 / +1 lines)
Lines 251-257 Link Here
251
WordTrans_ErrorList::GetError( USHORT		i_nNr,
251
WordTrans_ErrorList::GetError( USHORT		i_nNr,
252
							   ByteString *	o_pErrorText ) const
252
							   ByteString *	o_pErrorText ) const
253
{
253
{
254
	if (0 <= i_nNr && i_nNr < aErrors.size() )
254
	if ( i_nNr < aErrors.size() )
255
	{
255
	{
256
		const ByteString & rError = aErrors[i_nNr];
256
		const ByteString & rError = aErrors[i_nNr];
257
		const char * pErrorChars = rError.GetBuffer();
257
		const char * pErrorChars = rError.GetBuffer();
(-)source/xrmmerge.cxx (-3 / +3 lines)
Lines 68-75 Link Here
68
#include "utf8conv.hxx"
68
#include "utf8conv.hxx"
69
#include "tokens.h"
69
#include "tokens.h"
70
70
71
extern "C" { yyerror( char * ); }
71
extern "C" { int yyerror( char * ); }
72
extern "C" { YYWarning( char * ); }
72
extern "C" { int YYWarning( char * ); }
73
73
74
// defines to parse command line
74
// defines to parse command line
75
#define STATE_NON  		0x0001
75
#define STATE_NON  		0x0001
Lines 438-444 Link Here
438
	ByteString sSearch( " " );
438
	ByteString sSearch( " " );
439
	sSearch += rAttribute;
439
	sSearch += rAttribute;
440
	sSearch += "=";
440
	sSearch += "=";
441
	short nPos = sTmp.Search( sSearch );
441
	int nPos = sTmp.Search( sSearch );
442
442
443
	if ( nPos != STRING_NOTFOUND ) {
443
	if ( nPos != STRING_NOTFOUND ) {
444
		sTmp = sTmp.Copy( nPos );
444
		sTmp = sTmp.Copy( nPos );

Return to issue 13369