From a2260689596a694c4369aa1a43c58cddfd5b0bad Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Fri, 20 Jun 2014 11:07:29 +1000 Subject: Change formatting of DEBUG_TRACE calls to match style guide --- libs/pbd/file_utils.cc | 33 +++++++++++++-------------------- 1 file changed, 13 insertions(+), 20 deletions(-) (limited to 'libs/pbd/file_utils.cc') diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc index 1101ba6504..618dccf4dd 100644 --- a/libs/pbd/file_utils.cc +++ b/libs/pbd/file_utils.cc @@ -127,10 +127,8 @@ find_files_matching_pattern (vector& result, string filename = Glib::path_get_basename (*file_iter); if (!pattern.match(filename)) continue; - DEBUG_TRACE ( - DEBUG::FileUtils, - string_compose("Found file %1\n", *file_iter) - ); + DEBUG_TRACE (DEBUG::FileUtils, + string_compose("Found file %1\n", *file_iter)); result.push_back(*file_iter); } @@ -155,29 +153,24 @@ find_file (const Searchpath& search_path, find_files_matching_pattern (tmp, search_path, filename); - if (tmp.size() == 0) - { - DEBUG_TRACE ( - DEBUG::FileUtils, - string_compose("No file matching %1 found in Path: %2\n", filename, search_path.to_string()) - ); + if (tmp.size() == 0) { + DEBUG_TRACE (DEBUG::FileUtils, + string_compose("No file matching %1 found in Path: %2\n", + filename, search_path.to_string())); return false; } - if (tmp.size() != 1) - { - DEBUG_TRACE ( - DEBUG::FileUtils, - string_compose("Found more that one file matching %1 in Path: %2\n", filename, search_path.to_string()) - ); + if (tmp.size() != 1) { + DEBUG_TRACE (DEBUG::FileUtils, + string_compose("Found more that one file matching %1 in Path: %2\n", + filename, search_path.to_string())); } result = tmp.front(); - DEBUG_TRACE ( - DEBUG::FileUtils, - string_compose("Found file %1 in Path: %2\n", filename, search_path.to_string()) - ); + DEBUG_TRACE (DEBUG::FileUtils, + string_compose("Found file %1 in Path: %2\n", + filename, search_path.to_string())); return true; } -- cgit v1.2.3