diff options
| author | engelsman <engelsman> | 2010-11-13 09:01:45 +0000 |
|---|---|---|
| committer | engelsman <engelsman> | 2010-11-13 09:01:45 +0000 |
| commit | ce6043d160c1ca922cdddd2a297475a123124a39 (patch) | |
| tree | 26f2f21c8944e117388e75880f4f2518e6c81b22 /fluid | |
| parent | 2e3037f89585be11dfa91a4e692ef71bc72ab885 (diff) | |
fixed const correctness in fluid/Fl_Function_Type.cxx (STR #2441)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7824 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
| -rw-r--r-- | fluid/Fl_Function_Type.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx index 3fe229f7f..e1749f596 100644 --- a/fluid/Fl_Function_Type.cxx +++ b/fluid/Fl_Function_Type.cxx @@ -471,7 +471,7 @@ Fl_Code_Type Fl_Code_type; void Fl_Code_Type::write_code1() { const char* c = name(); if (!c) return; - char *pch; + const char *pch; const char *ind = indent(); while( (pch=strchr(c,'\n')) ) { |
