]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textfile.h
all delete functions now send delete notification event
[wxWidgets.git] / include / wx / textfile.h
index 2433f02c58ed01a97dee040af6de31da922716a4..3ac74cfc2a1d91e72d30729f0630a2d4d9ccf3e1 100644 (file)
@@ -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();