some more "std::string" to "const char *" conversations.

git-svn-id: svn://localhost/trunk/ardour2@208 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Karsten Wiese 2005-12-24 13:07:36 +00:00
parent d7cd04b719
commit 796ded66a3
5 changed files with 9 additions and 9 deletions

View file

@ -75,9 +75,9 @@ Editor::connect_to_image_compositor()
}
// XXX should really put this somewhere safe
std::string host_ip = "127.0.0.1" ;
const char * host_ip = "127.0.0.1" ;
bool retcode = image_socket_listener->connect(host_ip,ardourvis::DEFAULT_PORT) ;
bool retcode = image_socket_listener->connect(host_ip, ardourvis::DEFAULT_PORT) ;
if(retcode == false)
{