From 28e19a8b7ba39201f0057ad0e68488c1b38c5c2e Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 22 Jun 2004 02:33:26 +0000 Subject: "" svn path=/trunk/; revision=1827 --- externals/grill/flext/source/fllib.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'externals/grill/flext/source/fllib.cpp') diff --git a/externals/grill/flext/source/fllib.cpp b/externals/grill/flext/source/fllib.cpp index f9d2f84b..ce4e5703 100755 --- a/externals/grill/flext/source/fllib.cpp +++ b/externals/grill/flext/source/fllib.cpp @@ -177,7 +177,7 @@ void flext_obj::lib_init(const char *name,void setupfun(),bool attr) catch(std::exception &x) { error("%s - Exception at library setup: %s",name,x.what()); } - catch(const char *txt) { + catch(char *txt) { error("%s - Exception at library setup: %s",name,txt); } catch(...) { @@ -306,7 +306,7 @@ void flext_obj::obj_add(bool lib,bool dsp,bool attr,const char *idname,const cha catch(std::exception &x) { error("%s - Exception while initializing class: %s",idname,x.what()); } - catch(const char *txt) { + catch(char *txt) { error("%s - Exception while initializing class: %s",idname,txt); } catch(...) { @@ -458,7 +458,7 @@ flext_hdr *flext_obj::obj_new(const t_symbol *s,int _argc_,t_atom *argv) error("%s - Exception while creating object: %s",GetString(s),x.what()); ok = false; } - catch(const char *txt) { + catch(char *txt) { error("%s - Exception while creating object: %s",GetString(s),txt); ok = false; } @@ -509,7 +509,7 @@ void flext_obj::obj_free(flext_hdr *h) catch(std::exception &x) { error("%s - Exception while destroying object: %s",GetString(name),x.what()); } - catch(const char *txt) { + catch(char *txt) { error("%s - Exception while destroying object: %s",GetString(name),txt); } catch(...) { -- cgit v1.2.1