1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Fix build with gcc 4.1.

Reported by:	kris mail
This commit is contained in:
Sergey Matveychuk 2007-01-28 15:14:55 +00:00
parent 452e0a0473
commit b7f5cb19c0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183548
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,13 @@
--- efltk/Fl_Combo_Box.h.orig Sun Jan 28 17:54:29 2007
+++ efltk/Fl_Combo_Box.h Sun Jan 28 17:54:45 2007
@@ -23,8 +23,8 @@
void ctor_init();
protected:
- static void Fl_Combo_Box::cb_browse(Fl_Widget *w, void *data);
- static void Fl_Combo_Box::cb_button(Fl_Widget *w, void *data);
+ static void cb_browse(Fl_Widget *w, void *data);
+ static void cb_button(Fl_Widget *w, void *data);
public:
static Fl_Named_Style* default_style;

View File

@ -0,0 +1,11 @@
--- efltk/Fl_Text_Buffer.h.orig Sun Jan 28 17:53:23 2007
+++ efltk/Fl_Text_Buffer.h Sun Jan 28 17:53:30 2007
@@ -78,7 +78,7 @@
Fl_Text_Buffer(int requestedSize = 0);
~Fl_Text_Buffer();
- char *Fl_Text_Buffer::static_buffer();
+ char *static_buffer();
// Undo stack size: (default 50)
int undo_size();