From 8af47234fbd8a5be50e6f85dd1edc6cb40990d77 Mon Sep 17 00:00:00 2001 From: Julien de Kozak Date: Sun, 23 Jun 2013 13:37:50 +0200 Subject: remove compilation warning --- gtk2_ardour/editor.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gtk2_ardour/editor.cc') diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 761404ba18..d3e3ae9828 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -3125,12 +3125,12 @@ Editor::convert_drop_to_paths ( */ string txt = data.get_text(); - const char* p; + char* p; const char* q; - p = (const char *) malloc (txt.length() + 1); - txt.copy (const_cast (p), txt.length(), 0); - const_cast(p)[txt.length()] = '\0'; + p = (char *) malloc (txt.length() + 1); + txt.copy (p, txt.length(), 0); + p[txt.length()] = '\0'; while (p) { -- cgit v1.2.3