mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
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:
parent
d7cd04b719
commit
796ded66a3
5 changed files with 9 additions and 9 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue