[beast: 35/57] BST: fix Bse::Path references



commit 181beef9d61fc0b3d22946ea57277310a5dabb4c
Author: Tim Janik <timj gnu org>
Date:   Mon Jul 17 02:58:18 2017 +0200

    BST: fix Bse::Path references
    
    Signed-off-by: Tim Janik <timj gnu org>

 beast-gtk/bstmain.cc |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/beast-gtk/bstmain.cc b/beast-gtk/bstmain.cc
index 3fe5dfd..9c5b9c6 100644
--- a/beast-gtk/bstmain.cc
+++ b/beast-gtk/bstmain.cc
@@ -169,7 +169,7 @@ main_init_argv0_installpaths (const char *argv0)
   const char *const slash = strrchr (exe, '/');
   if (slash && slash >= exe + 6 && strncmp (slash - 6, "/.libs/lt-", 10) == 0)
     {
-      using namespace Rapicorn;
+      namespace Path = Bse::Path;
       // use source dir relative installpaths for uninstalled executables
       const String program_abspath = Path::abspath (argv0);
       const String dirpath = Path::join (Path::dirname (program_abspath), "..", ".."); // 
topdir/subdir/.libs/../..
@@ -622,10 +622,9 @@ echo_test_handler (const std::string &msg)
 static void
 bst_init_aida_idl()
 {
-  using namespace Rapicorn::Aida;
   assert (bse_server == NULL);
   // connect to BSE thread and fetch server handle
-  ClientConnectionP connection = Bse::init_server_connection();
+  Bse::Aida::ClientConnectionP connection = Bse::init_server_connection();
   assert (connection != NULL);
   bse_server = Bse::init_server_instance();
   assert (bse_server != NULL);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]