Various fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -108,19 +108,8 @@ public:
|
||||
bool Write(Type typeNew = Type_None);
|
||||
|
||||
// get the file termination string
|
||||
inline static const char *GetEOL(Type type = typeDefault)
|
||||
{
|
||||
switch ( type ) {
|
||||
case Type_None: return "";
|
||||
case Type_Unix: return "\n";
|
||||
case Type_Dos: return "\r\n";
|
||||
case Type_Mac: return "\r";
|
||||
|
||||
default:
|
||||
wxFAIL_MSG("bad file type in wxTextFile::GetEOL.");
|
||||
return (const char *) NULL;
|
||||
}
|
||||
}
|
||||
// Note: implementation moved to textfile to prevent warning due to switch.
|
||||
static const char *GetEOL(Type type = typeDefault);
|
||||
|
||||
// dtor
|
||||
~wxTextFile();
|
||||
|
Reference in New Issue
Block a user