Use enums, not typedef enums, in all public headers.

This commit is contained in:
Lauri Nurmi
2016-02-07 01:11:25 +02:00
parent 859e31ca7f
commit 4281cb4daa
8 changed files with 32 additions and 32 deletions

View File

@@ -107,13 +107,13 @@ protected:
wxDECLARE_NO_COPY_CLASS(wxTextInputStream);
};
typedef enum
enum wxEOL
{
wxEOL_NATIVE,
wxEOL_UNIX,
wxEOL_MAC,
wxEOL_DOS
} wxEOL;
};
class WXDLLIMPEXP_BASE wxTextOutputStream
{