X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Fabout.cc;h=3bf9a314227a4253e6c667d7441d198e14553b58;hb=5fef65538040fbac1b9edd1847a269aa925a49c9;hp=b2dac673799fefa96c9499589106bc3a1f78f07c;hpb=bb8cb93789b2eec65e4d82e5ceb64054673cbc4f;p=ardour.git diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index b2dac67379..3bf9a31422 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -30,7 +30,6 @@ #include "ardour/version.h" #include "ardour/filesystem_paths.h" -#include "utils.h" #include "version.h" #include "about.h" @@ -40,8 +39,8 @@ #include "i18n.h" -#ifdef SearchPath -#undef SearchPath +#ifdef WAF_BUILD +#include "gtk2ardour-version.h" #endif using namespace Gtk; @@ -129,7 +128,9 @@ static const char* authors[] = { N_("Hans Baier"), N_("Ben Bell"), N_("Sakari Bergen"), + N_("Christian Borss"), N_("Chris Cannam"), + N_("Jeremy Carter"), N_("Jesse Chappell"), N_("Thomas Charbonnel"), N_("Sam Chessman"), @@ -155,6 +156,7 @@ static const char* authors[] = { N_("Armand Klenk"), N_("Julien de Kozak"), N_("Matt Krai"), + N_("Georg Krause"), N_("Nick Lanham"), N_("Colin Law"), N_("Joshua Leach"), @@ -178,6 +180,7 @@ static const char* authors[] = { N_("Mike Täht"), N_("Roy Vegard"), N_("Thorsten Wilms"), + N_("Grygorii Zharun"), 0 }; @@ -268,7 +271,7 @@ patent must be licensed for everyone's free use or not licensed at all.\n\ The precise terms and conditions for copying, distribution and\n\ modification follow.\n\ \n\ - GNU GENERAL PUBLIC LICENSE\n\ +"" GNU GENERAL PUBLIC LICENSE\n\ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\ \n\ 0. This License applies to any program or other work which contains\n\ @@ -550,7 +553,9 @@ proprietary programs. If your program is a subroutine library, you may\n\ consider it more useful to permit linking proprietary applications with the\n\ library. If this is what you want to do, use the GNU Library General\n\ Public License instead of this License.\n\ -"); +"); /* Note that at the start of (approximately) line 265, the above license + text has been split into two concatenated tokens (to satisfy compilation + under MSVC). Hopefully this won't affect gcc */ About::About () : config_info (0) @@ -564,9 +569,9 @@ About::About () std::string splash_file; - SearchPath spath(ardour_data_search_path()); + Searchpath spath(ardour_data_search_path()); - if (find_file_in_search_path (spath, "splash.png", splash_file)) { + if (find_file (spath, "splash.png", splash_file)) { set_logo (Gdk::Pixbuf::create_from_file (splash_file)); } else { error << "Could not find splash file" << endmsg;