diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index c44b29e8c9..23424623db 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -17,6 +17,8 @@ */ +#include "product_definition.h" + #ifdef WAF_BUILD #include "gtk2ardour-config.h" #endif @@ -104,7 +106,6 @@ typedef uint64_t microseconds_t; #include "audio_clock.h" #include "big_clock_window.h" #include "bundle_manager.h" -//VKPRefs:#include "engine_dialog.h" #include "gain_meter.h" #include "global_port_matrix.h" #include "gui_object.h" @@ -163,7 +164,7 @@ sigc::signal ARDOUR_UI::CloseAllDialogs; ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir) - : Gtkmm2ext::UI (PROGRAM_NAME, argcp, argvp) + : Gtkmm2ext::UI (APPLICATION_NAME, argcp, argvp) , gui_object_state (new GUIObjectState) , primary_clock (new MainClock (X_("primary"), false, X_("transport"), true, true, true, false, false)) , secondary_clock (new MainClock (X_("secondary"), false, X_("secondary"), true, true, false, false, true)) diff --git a/gtk2_ardour/product_definition.h b/gtk2_ardour/product_definition.h new file mode 100644 index 0000000000..b636f9bda7 --- /dev/null +++ b/gtk2_ardour/product_definition.h @@ -0,0 +1,25 @@ +/* + Copyright (C) 2014 Waves Audio Ltd. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#ifndef __ardour_gtk_product_definition_h__ +#define __ardour_gtk_product_definition_h__ + +#define APPLICATION_NAME "Tracks Live" + +#endif /* __ardour_gtk_product_definition_h__ */