aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/fllib.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-06-22 02:33:26 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-06-22 02:33:26 +0000
commit28e19a8b7ba39201f0057ad0e68488c1b38c5c2e (patch)
tree26abdc18794af8ce2a277f2f9df94be22638cebd /externals/grill/flext/source/fllib.cpp
parente728a5bc3db296b4b67c2d3e5b56558c42c566a8 (diff)
""
svn path=/trunk/; revision=1827
Diffstat (limited to 'externals/grill/flext/source/fllib.cpp')
-rwxr-xr-xexternals/grill/flext/source/fllib.cpp8
1 files changed, 4 insertions, 4 deletions
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(...) {