projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
use C++ compiler for va_copy test, at least under IRIX the C99 C compiler has it...
[wxWidgets.git]
/
src
/
common
/
imagpcx.cpp
diff --git
a/src/common/imagpcx.cpp
b/src/common/imagpcx.cpp
index 03364b381e99bccf447ee41f7eadc01bc8bd0ec3..69b04d1ea72c2b5bc69cb03ec84eca2f21ba5f81 100644
(file)
--- a/
src/common/imagpcx.cpp
+++ b/
src/common/imagpcx.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: imagpcx.cpp
+// Name:
src/common/
imagpcx.cpp
// Purpose: wxImage PCX handler
// Author: Guillermo Rodriguez Garcia <guille@iies.es>
// Version: 1.1
// Purpose: wxImage PCX handler
// Author: Guillermo Rodriguez Garcia <guille@iies.es>
// Version: 1.1
@@
-8,33
+8,27
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "imagpcx.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
-#pragma hdrstop
+
#pragma hdrstop
#endif
#endif
+#if wxUSE_IMAGE && wxUSE_PCX
+
#ifndef WX_PRECOMP
#ifndef WX_PRECOMP
-# include "wx/defs.h"
-# include "wx/palette.h"
+ #include "wx/object.h"
+ #include "wx/list.h"
+ #include "wx/log.h"
+ #include "wx/intl.h"
+ #include "wx/palette.h"
+ #include "wx/hash.h"
+ #include "wx/module.h"
#endif
#endif
-#if wxUSE_IMAGE && wxUSE_PCX
-
#include "wx/imagpcx.h"
#include "wx/wfstream.h"
#include "wx/imagpcx.h"
#include "wx/wfstream.h"
-#include "wx/module.h"
-#include "wx/log.h"
-#include "wx/intl.h"
-
-#include "wx/hash.h"
-#include "wx/list.h"
-#include "wx/object.h"
//-----------------------------------------------------------------------------
// wxPCXHandler
//-----------------------------------------------------------------------------
// wxPCXHandler
@@
-418,7
+412,7
@@
int SavePCX(wxImage *image, wxOutputStream& stream)
unsigned long index;
for (wxImageHistogram::iterator entry = histogram.begin();
unsigned long index;
for (wxImageHistogram::iterator entry = histogram.begin();
- entry != histogram.end();
entry++
)
+ entry != histogram.end();
++entry
)
{
key = entry->first;
index = entry->second.index;
{
key = entry->first;
index = entry->second.index;
@@
-504,4
+498,3
@@
bool wxPCXHandler::DoCanRead( wxInputStream& stream )
#endif // wxUSE_STREAMS
#endif // wxUSE_IMAGE && wxUSE_PCX
#endif // wxUSE_STREAMS
#endif // wxUSE_IMAGE && wxUSE_PCX
-