From 2c8d0460c2f99c2027d78c090b80d8df95d6f1e6 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Thu, 7 Jun 2007 03:24:53 +0000 Subject: [PATCH] Rename SearchPath::get_search_path_string to SearchPath::get_string git-svn-id: svn://localhost/ardour2/trunk@1975 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/pbd/search_path.h | 6 ++---- libs/pbd/search_path.cc | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/libs/pbd/pbd/search_path.h b/libs/pbd/pbd/search_path.h index 00756873dc..18f05ef014 100644 --- a/libs/pbd/pbd/search_path.h +++ b/libs/pbd/pbd/search_path.h @@ -114,11 +114,9 @@ public: * @return a search path string. * * The string that is returned contains the platform specific - * path separator. The verbosity and "explicitness" of this - * method is indicitive that I don't think it should be used - * that often. + * path separator. */ - const string get_search_path_string () const; + const string get_string () const; /** * Assignment of another SearchPath to this. diff --git a/libs/pbd/search_path.cc b/libs/pbd/search_path.cc index 0546789074..9a10557dab 100644 --- a/libs/pbd/search_path.cc +++ b/libs/pbd/search_path.cc @@ -79,7 +79,7 @@ SearchPath::add_directories (const vector& paths) } const string -SearchPath::get_search_path_string () const +SearchPath::get_string () const { string path;