[Summary] Per change request from Igor
authorVKamyshniy <VKamyshniy@wavesglobal.com>
Wed, 29 Oct 2014 15:26:55 +0000 (17:26 +0200)
committerVKamyshniy <VKamyshniy@wavesglobal.com>
Wed, 29 Oct 2014 19:56:23 +0000 (21:56 +0200)
gtk2_ardour/ardour_ui.cc
gtk2_ardour/product_definition.h [new file with mode: 0644]

index c44b29e8c9dc02bd300027fece42a95d0a8d9d7e..23424623db471d9ea9c672ec010cd51e563fb989 100644 (file)
@@ -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<void>      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 (file)
index 0000000..b636f9b
--- /dev/null
@@ -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__ */