Remove last traces of Symantec compiler support

Delete a couple of leftover __SYMANTEC__ checks.
This commit is contained in:
Vadim Zeitlin
2015-09-23 00:54:20 +02:00
parent 1e20b249bf
commit 87baba95b8
3 changed files with 1 additions and 8 deletions

View File

@@ -64,8 +64,6 @@
#if defined(__VISUALC__)
typedef _off_t off_t;
#elif defined(__SYMANTEC__)
typedef long off_t;
#endif
enum wxSeekMode

View File

@@ -231,7 +231,7 @@ extern unsigned long android_wcstoul(const wchar_t *nptr, wchar_t **endptr, int
#if defined(__BORLANDC__) || defined(__DJGPP__)
#define wxCRT_StricmpA stricmp
#define wxCRT_StrnicmpA strnicmp
#elif defined(__SYMANTEC__) || defined(__VISUALC__)
#elif defined(__VISUALC__)
#define wxCRT_StricmpA _stricmp
#define wxCRT_StrnicmpA _strnicmp
#elif defined(__UNIX__) || (defined(__GNUWIN32__) && !defined(__WX_STRICT_ANSI_GCC__))

View File

@@ -812,10 +812,6 @@ void wxMSWDCImpl::DoDrawArc(wxCoord x1, wxCoord y1,
void wxMSWDCImpl::DoDrawCheckMark(wxCoord x1, wxCoord y1,
wxCoord width, wxCoord height)
{
// cases when we don't have DrawFrameControl()
#if defined(__SYMANTEC__)
return wxDCBase::DoDrawCheckMark(x1, y1, width, height);
#else // normal case
wxCoord x2 = x1 + width,
y2 = y1 + height;
@@ -829,7 +825,6 @@ void wxMSWDCImpl::DoDrawCheckMark(wxCoord x1, wxCoord y1,
CalcBoundingBox(x1, y1);
CalcBoundingBox(x2, y2);
#endif // Normal
}
void wxMSWDCImpl::DoDrawPoint(wxCoord x, wxCoord y)