From dc802b3e2ab5f807970529bae1f6bdfed922e863 Mon Sep 17 00:00:00 2001 From: paul Date: Sat, 12 Mar 2011 20:24:32 +0000 Subject: [PATCH] removed long-ifdef'ed-out code git-svn-id: http://subversion.ardour.org/svn/ardour2/ardour2/branches/3.0@9129 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/utils.cc | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/libs/ardour/utils.cc b/libs/ardour/utils.cc index 2ea8b73dc..81d6ddcf7 100644 --- a/libs/ardour/utils.cc +++ b/libs/ardour/utils.cc @@ -63,21 +63,6 @@ using namespace PBD; string legalize_for_path (const string& str) { -#if OLD_SCHOOL_PROHIBITIVE - string::size_type pos; - string legal_chars = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_+=: "; - string legal; - - legal = str; - pos = 0; - - while ((pos = legal.find_first_not_of (legal_chars, pos)) != string::npos) { - legal.replace (pos, 1, "_"); - pos += 1; - } - - return legal; -#else string::size_type pos; string illegal_chars = "/\\"; /* DOS, POSIX. Yes, we're going to ignore HFS */ string legal; @@ -91,7 +76,6 @@ legalize_for_path (const string& str) } return legal; -#endif } string -- 2.11.4.GIT