diff options
| author | yuri <yuri> | 2008-05-01 18:56:12 +0000 |
|---|---|---|
| committer | yuri <yuri> | 2008-05-01 18:56:12 +0000 |
| commit | c04f2f8bff6ca31d8d4858584b6dbf585c66164f (patch) | |
| tree | b80a584a276ad50a424564c3b8554a42171385ea /src/Fl_File_Chooser.cxx | |
| parent | 1488c10f7e7964473d299485b0a04145f6db4b17 (diff) | |
fix Fl_Font and Fl_Font_Size types in Fl_File_Chooser.fl file
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6122 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Chooser.cxx')
| -rw-r--r-- | src/Fl_File_Chooser.cxx | 8 |
1 files changed, 4 insertions, 4 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()); } |
