diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_File_Chooser.cxx | 8 | ||||
| -rw-r--r-- | src/Fl_File_Chooser.fl | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/Fl_File_Chooser.cxx b/src/Fl_File_Chooser.cxx index fb588cb7d..87e8786d8 100644 --- a/src/Fl_File_Chooser.cxx +++ b/src/Fl_File_Chooser.cxx @@ -393,19 +393,19 @@ Fl_Color Fl_File_Chooser::textcolor() { return (fileList->textcolor()); } -void Fl_File_Chooser::textfont(uchar f) { +void Fl_File_Chooser::textfont(Fl_Font f) { fileList->textfont(f); } -uchar Fl_File_Chooser::textfont() { +Fl_Font Fl_File_Chooser::textfont() { return (fileList->textfont()); } -void Fl_File_Chooser::textsize(uchar s) { +void Fl_File_Chooser::textsize(Fl_Font_Size s) { fileList->textsize(s); } -uchar Fl_File_Chooser::textsize() { +Fl_Font_Size Fl_File_Chooser::textsize() { return (fileList->textsize()); } diff --git a/src/Fl_File_Chooser.fl b/src/Fl_File_Chooser.fl index 80b5b589d..ddfa4414e 100644 --- a/src/Fl_File_Chooser.fl +++ b/src/Fl_File_Chooser.fl @@ -28,7 +28,7 @@ comment {// // // http://www.fltk.org/str.php // -} {selected in_source in_header +} {in_source in_header } decl {\#include <FL/fl_draw.H>} {} @@ -327,19 +327,19 @@ fileName->take_focus();} {} } { code {return (fileList->textcolor());} {} } - Function {textfont(uchar f)} {return_type void + Function {textfont(Fl_Font f)} {return_type void } { code {fileList->textfont(f);} {} } - Function {textfont()} {return_type uchar + Function {textfont()} {selected return_type Fl_Font } { code {return (fileList->textfont());} {} } - Function {textsize(uchar s)} {return_type void + Function {textsize(Fl_Font_Size s)} {return_type void } { code {fileList->textsize(s);} {} } - Function {textsize()} {return_type uchar + Function {textsize()} {return_type Fl_Font_Size } { code {return (fileList->textsize());} {} } |
