Compile improvemnts for strict compilers and the like

Down to two warning messages for egcs compile


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-01-08 10:23:39 +00:00
parent 06f46ad1fe
commit 702ca7c070
8 changed files with 183 additions and 174 deletions

View File

@@ -34,7 +34,7 @@ class WXDLLEXPORT wxPrintInfo;
class WXDLLEXPORT wxCommand; class WXDLLEXPORT wxCommand;
class WXDLLEXPORT wxCommandProcessor; class WXDLLEXPORT wxCommandProcessor;
class WXDLLEXPORT wxFileHistory; class WXDLLEXPORT wxFileHistory;
#ifdef wxUSE_CONFIG #if wxUSE_CONFIG
class WXDLLEXPORT wxConfigBase; class WXDLLEXPORT wxConfigBase;
#endif #endif
@@ -344,7 +344,7 @@ class WXDLLEXPORT wxDocManager: public wxEvtHandler
virtual wxString GetHistoryFile(int i) const; virtual wxString GetHistoryFile(int i) const;
virtual void FileHistoryUseMenu(wxMenu *menu); virtual void FileHistoryUseMenu(wxMenu *menu);
virtual void FileHistoryRemoveMenu(wxMenu *menu); virtual void FileHistoryRemoveMenu(wxMenu *menu);
#ifdef wxUSE_CONFIG #if wxUSE_CONFIG
virtual void FileHistoryLoad(wxConfigBase& config); virtual void FileHistoryLoad(wxConfigBase& config);
virtual void FileHistorySave(wxConfigBase& config); virtual void FileHistorySave(wxConfigBase& config);
#endif #endif
@@ -516,7 +516,7 @@ class WXDLLEXPORT wxFileHistory: public wxObject
// Remove menu from the list (MDI child may be closing) // Remove menu from the list (MDI child may be closing)
virtual void RemoveMenu(wxMenu *menu); virtual void RemoveMenu(wxMenu *menu);
#ifdef wxUSE_CONFIG #if wxUSE_CONFIG
virtual void Load(wxConfigBase& config); virtual void Load(wxConfigBase& config);
virtual void Save(wxConfigBase& config); virtual void Save(wxConfigBase& config);
#endif #endif

View File

@@ -41,7 +41,7 @@ public:
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
int nStrings = 0, int nStrings = 0,
const wxString choices[] = NULL, const wxString choices[] = (wxString[]) NULL,
long style = 0, long style = 0,
const wxValidator& validator = wxDefaultValidator, const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxListBoxNameStr); const wxString& name = wxListBoxNameStr);

View File

@@ -41,7 +41,7 @@ public:
const wxPoint& pos = wxDefaultPosition, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, const wxSize& size = wxDefaultSize,
int nStrings = 0, int nStrings = 0,
const wxString choices[] = NULL, const wxString choices[] = (wxString[]) NULL,
long style = 0, long style = 0,
const wxValidator& validator = wxDefaultValidator, const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxListBoxNameStr); const wxString& name = wxListBoxNameStr);

View File

@@ -33,11 +33,11 @@ DEBUG = @WXDEBUG@ @WXDEBUG_DEFINE@
CC = @CC@ CC = @CC@
CPP = @CPP@ CPP = @CPP@
CPPFLAGS=@CPPFLAGS@ CPPFLAGS=@CPPFLAGS@
CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG) -D_REENTRANT CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
# c++-compiler stuff # c++-compiler stuff
CXX = @CXX@ CXX = @CXX@
CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG) -D_REENTRANT CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
CXXCPP = @CXXCPP@ CXXCPP = @CXXCPP@
# shared compile stuff # shared compile stuff

View File

@@ -273,9 +273,9 @@ wxString wxExpandEnvVars(const wxString& str)
{ {
Bracket_None, Bracket_None,
Bracket_Normal = ')', Bracket_Normal = ')',
Bracket_Curly = '}', Bracket_Curly = '}'
#ifdef __WXMSW__ #ifdef __WXMSW__
Bracket_Windows = '%' // yeah, Windows people are a bit strange ;-) ,Bracket_Windows = '%' // yeah, Windows people are a bit strange ;-)
#endif #endif
}; };
@@ -411,5 +411,4 @@ void wxSplitPath(wxArrayString& aParts, const char *sz)
#endif #endif
// wxUSE_CONFIG // wxUSE_CONFIG

View File

@@ -1044,7 +1044,7 @@ void wxDocManager::FileHistoryRemoveMenu(wxMenu *menu)
m_fileHistory->RemoveMenu(menu); m_fileHistory->RemoveMenu(menu);
} }
#ifdef wxUSE_CONFIG #if wxUSE_CONFIG
void wxDocManager::FileHistoryLoad(wxConfigBase& config) void wxDocManager::FileHistoryLoad(wxConfigBase& config)
{ {
if (m_fileHistory) if (m_fileHistory)
@@ -1822,7 +1822,7 @@ void wxFileHistory::RemoveMenu(wxMenu *menu)
m_fileMenus.DeleteObject(menu); m_fileMenus.DeleteObject(menu);
} }
#ifdef wxUSE_CONFIG #if wxUSE_CONFIG
void wxFileHistory::Load(wxConfigBase& config) void wxFileHistory::Load(wxConfigBase& config)
{ {
m_fileHistoryN = 0; m_fileHistoryN = 0;

View File

@@ -174,7 +174,8 @@ wxString wxPathList::FindValidPath (const wxString& file)
char buf[_MAXPATHLEN]; char buf[_MAXPATHLEN];
strcpy(buf, wxBuffer); strcpy(buf, wxBuffer);
char *filename = IsAbsolutePath (buf) ? wxFileNameFromPath (buf) : (char *)buf; char *filename = (char*) NULL; /* shut up buggy egcs warning */
filename = IsAbsolutePath (buf) ? wxFileNameFromPath (buf) : (char *)buf;
for (wxNode * node = First (); node; node = node->Next ()) for (wxNode * node = First (); node; node = node->Next ())
{ {

View File

@@ -446,180 +446,184 @@ IMPLEMENT_DYNAMIC_CLASS(wxPNGHandler,wxImageHandler)
bool wxPNGHandler::LoadFile( wxImage *image, const wxString& name ) bool wxPNGHandler::LoadFile( wxImage *image, const wxString& name )
{ {
FILE *f; image->Destroy();
png_structp png_ptr;
png_infop info_ptr; png_structp png_ptr = png_create_read_struct( PNG_LIBPNG_VER_STRING,
unsigned char *ptr, **lines, *ptr2; (voidp) NULL, (png_error_ptr) NULL, (png_error_ptr) NULL );
int transp,bit_depth,color_type,interlace_type; if (!png_ptr) return FALSE;
png_uint_32 width, height;
unsigned int i;
image->Destroy(); png_infop info_ptr = png_create_info_struct( png_ptr );
if (!info_ptr)
transp = 0; {
png_ptr = png_create_read_struct( PNG_LIBPNG_VER_STRING, NULL, NULL, NULL ); png_destroy_read_struct( &png_ptr, (png_infopp) NULL, (png_infopp) NULL );
if (!png_ptr) return FALSE; return FALSE;
}
info_ptr = png_create_info_struct( png_ptr ); if (setjmp(png_ptr->jmpbuf))
if (!info_ptr) {
{ png_destroy_read_struct( &png_ptr, &info_ptr, (png_infopp) NULL );
png_destroy_read_struct( &png_ptr, NULL, NULL ); return FALSE;
return FALSE; }
}
if (setjmp(png_ptr->jmpbuf)) if (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
{ {
png_destroy_read_struct( &png_ptr, &info_ptr, NULL ); png_destroy_read_struct( &png_ptr, &info_ptr, (png_infopp) NULL );
return FALSE; return FALSE;
} }
FILE *f = fopen( name, "rb" );
png_init_io( png_ptr, f );
png_uint_32 width,height;
int bit_depth,color_type,interlace_type;
if (info_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA) png_read_info( png_ptr, info_ptr );
{ png_get_IHDR( png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, (int*) NULL, (int*) NULL );
png_destroy_read_struct( &png_ptr, &info_ptr, NULL );
return FALSE;
}
f = fopen( name, "rb" ); if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand( png_ptr );
png_init_io( png_ptr, f );
png_read_info( png_ptr, info_ptr ); png_set_strip_16( png_ptr );
png_get_IHDR( png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL ); png_set_packing( png_ptr );
if (png_get_valid( png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand( png_ptr );
png_set_filler( png_ptr, 0xff, PNG_FILLER_AFTER );
if (color_type == PNG_COLOR_TYPE_PALETTE) png_set_expand( png_ptr ); image->Create( width, height );
png_set_strip_16( png_ptr ); if (!image->Ok())
png_set_packing( png_ptr ); {
if (png_get_valid( png_ptr, info_ptr, PNG_INFO_tRNS)) png_set_expand( png_ptr ); png_destroy_read_struct( &png_ptr, &info_ptr, (png_infopp) NULL );
png_set_filler( png_ptr, 0xff, PNG_FILLER_AFTER ); return FALSE;
}
image->Create( width, height ); unsigned char **lines = (unsigned char **)malloc( height * sizeof(unsigned char *) );
if (lines == NULL)
{
image->Destroy();
png_destroy_read_struct( &png_ptr, &info_ptr, (png_infopp) NULL );
return FALSE;
}
if (!image->Ok()) for (unsigned int i = 0; i < height; i++)
{ {
png_destroy_read_struct( &png_ptr, &info_ptr, NULL ); if ((lines[i] = (unsigned char *)malloc(width * (sizeof(unsigned char) * 4))) == NULL)
return FALSE; {
} image->Destroy();
for (unsigned int n = 0; n < i; n++) free( lines[n] );
lines = (unsigned char **)malloc( height * sizeof(unsigned char *) ); free( lines );
if (lines == NULL) png_destroy_read_struct( &png_ptr, &info_ptr, (png_infopp) NULL );
{ return FALSE;
image->Destroy(); }
png_destroy_read_struct( &png_ptr, &info_ptr, NULL ); }
return FALSE;
}
for (i = 0; i < height; i++)
{
if ((lines[i] = (unsigned char *)malloc(width * (sizeof(unsigned char) * 4))) == NULL)
{
image->Destroy();
for (unsigned int n = 0; n < i; n++) free( lines[n] );
free( lines );
png_destroy_read_struct( &png_ptr, &info_ptr, NULL );
return FALSE;
}
}
png_read_image( png_ptr, lines );
png_destroy_read_struct( &png_ptr, &info_ptr, NULL ); int transp = 0;
ptr = image->GetData(); png_read_image( png_ptr, lines );
if ((color_type == PNG_COLOR_TYPE_GRAY) || png_destroy_read_struct( &png_ptr, &info_ptr, (png_infopp) NULL );
(color_type == PNG_COLOR_TYPE_GRAY_ALPHA)) unsigned char *ptr = image->GetData();
{ if ((color_type == PNG_COLOR_TYPE_GRAY) ||
(color_type == PNG_COLOR_TYPE_GRAY_ALPHA))
{
for (unsigned int y = 0; y < height; y++) for (unsigned int y = 0; y < height; y++)
{ {
ptr2 = lines[y]; unsigned char *ptr2 = lines[y];
for (unsigned int x = 0; x < width; x++) for (unsigned int x = 0; x < width; x++)
{ {
unsigned char r = *ptr2++; unsigned char r = *ptr2++;
unsigned char a = *ptr2++; unsigned char a = *ptr2++;
if (a < 128) if (a < 128)
{ {
*ptr++ = 255; *ptr++ = 255;
*ptr++ = 0; *ptr++ = 0;
*ptr++ = 255; *ptr++ = 255;
transp = 1; transp = 1;
} }
else else
{ {
*ptr++ = r; *ptr++ = r;
*ptr++ = r; *ptr++ = r;
*ptr++ = r; *ptr++ = r;
} }
} }
} }
} }
else else
{ {
for (unsigned int y = 0; y < height; y++) for (unsigned int y = 0; y < height; y++)
{ {
ptr2 = lines[y]; unsigned char *ptr2 = lines[y];
for (unsigned int x = 0; x < width; x++) for (unsigned int x = 0; x < width; x++)
{ {
unsigned char r = *ptr2++; unsigned char r = *ptr2++;
unsigned char g = *ptr2++; unsigned char g = *ptr2++;
unsigned char b = *ptr2++; unsigned char b = *ptr2++;
unsigned char a = *ptr2++; unsigned char a = *ptr2++;
if (a < 128) if (a < 128)
{ {
*ptr++ = 255; *ptr++ = 255;
*ptr++ = 0; *ptr++ = 0;
*ptr++ = 255; *ptr++ = 255;
transp = 1; transp = 1;
} }
else else
{ {
if ((r == 255) && (g == 0) && (b == 255)) r = 254; if ((r == 255) && (g == 0) && (b == 255)) r = 254;
*ptr++ = r; *ptr++ = r;
*ptr++ = g; *ptr++ = g;
*ptr++ = b; *ptr++ = b;
} }
} }
} }
} }
for (i = 0; i < height; i++) free( lines[i] );
free( lines ); for (unsigned int i = 0; i < height; i++) free( lines[i] );
if (transp) free( lines );
image->SetMaskColour( 255, 0, 255 );
else if (transp)
image->SetMask( FALSE ); {
image->SetMaskColour( 255, 0, 255 );
}
else
{
image->SetMask( FALSE );
}
return TRUE; return TRUE;
} }
bool wxPNGHandler::SaveFile( wxImage *image, const wxString& name ) bool wxPNGHandler::SaveFile( wxImage *image, const wxString& name )
{ {
FILE *f = fopen( name, "wb" ); FILE *f = fopen( name, "wb" );
if (f) if (!f) return FALSE;
{
png_structp png_ptr = png_create_write_struct( PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); png_structp png_ptr = png_create_write_struct( PNG_LIBPNG_VER_STRING,
(voidp) NULL, (png_error_ptr) NULL, (png_error_ptr) NULL);
if (!png_ptr) if (!png_ptr)
{ {
fclose( f ); fclose( f );
return FALSE; return FALSE;
} }
png_infop info_ptr = png_create_info_struct(png_ptr); png_infop info_ptr = png_create_info_struct(png_ptr);
if (info_ptr == NULL) if (info_ptr == NULL)
{ {
fclose(f); fclose(f);
png_destroy_write_struct( &png_ptr, (png_infopp)NULL ); png_destroy_write_struct( &png_ptr, (png_infopp) NULL );
return FALSE; return FALSE;
} }
if (setjmp(png_ptr->jmpbuf)) if (setjmp(png_ptr->jmpbuf))
{ {
fclose( f ); fclose( f );
png_destroy_write_struct( &png_ptr, (png_infopp)NULL ); png_destroy_write_struct( &png_ptr, (png_infopp) NULL );
return FALSE; return FALSE;
} }
png_init_io( png_ptr, f ); png_init_io( png_ptr, f );
png_set_IHDR( png_ptr, info_ptr, image->GetWidth(), image->GetHeight(), 8, png_set_IHDR( png_ptr, info_ptr, image->GetWidth(), image->GetHeight(), 8,
PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE, PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_color_8 sig_bit; png_color_8 sig_bit;
sig_bit.red = 8; sig_bit.red = 8;
sig_bit.green = 8; sig_bit.green = 8;
@@ -633,36 +637,41 @@ bool wxPNGHandler::SaveFile( wxImage *image, const wxString& name )
unsigned char *data = (unsigned char *)malloc( image->GetWidth()*4 ); unsigned char *data = (unsigned char *)malloc( image->GetWidth()*4 );
if (!data) if (!data)
{ {
fclose( f ); fclose( f );
png_destroy_write_struct( &png_ptr, (png_infopp)NULL ); png_destroy_write_struct( &png_ptr, (png_infopp) NULL );
return FALSE; return FALSE;
} }
for (int y = 0; y < image->GetHeight(); y++) for (int y = 0; y < image->GetHeight(); y++)
{ {
unsigned char *ptr = image->GetData() + (y * image->GetWidth() * 3); unsigned char *ptr = image->GetData() + (y * image->GetWidth() * 3);
for (int x = 0; x < image->GetWidth(); x++) for (int x = 0; x < image->GetWidth(); x++)
{ {
data[(x << 2) + 0] = *ptr++; data[(x << 2) + 0] = *ptr++;
data[(x << 2) + 1] = *ptr++; data[(x << 2) + 1] = *ptr++;
data[(x << 2) + 2] = *ptr++; data[(x << 2) + 2] = *ptr++;
if ((data[(x << 2) + 0] == image->GetMaskRed()) && if ((data[(x << 2) + 0] == image->GetMaskRed()) &&
(data[(x << 2) + 1] == image->GetMaskGreen()) && (data[(x << 2) + 1] == image->GetMaskGreen()) &&
(data[(x << 2) + 2] == image->GetMaskBlue())) (data[(x << 2) + 2] == image->GetMaskBlue()))
data[(x << 2) + 3] = 0; {
else data[(x << 2) + 3] = 0;
data[(x << 2) + 3] = 255; }
} else
png_bytep row_ptr = data; {
png_write_rows( png_ptr, &row_ptr, 1 ); data[(x << 2) + 3] = 255;
}
}
png_bytep row_ptr = data;
png_write_rows( png_ptr, &row_ptr, 1 );
} }
free(data); free(data);
png_write_end( png_ptr, info_ptr ); png_write_end( png_ptr, info_ptr );
png_destroy_write_struct( &png_ptr, (png_infopp)NULL ); png_destroy_write_struct( &png_ptr, (png_infopp) NULL );
fclose(f); fclose(f);
}
return TRUE; return TRUE;
} }
#endif #endif