pkgsrc/x11/efltk/patches/patch-efltk_Fl__Widget_h
dholland b9bef3bfe3 Fix LP64 build. This package seems to rely heavily on storing ints in
pointers; at least it's not the other way around.
2011-10-02 03:44:10 +00:00

17 lines
614 B
Text

$NetBSD: patch-efltk_Fl__Widget_h,v 1.1 2011/10/02 03:44:10 dholland Exp $
- fix LP64 build
--- efltk/Fl_Widget.h~ 2003-06-25 10:02:00.000000000 +0000
+++ efltk/Fl_Widget.h
@@ -363,8 +363,8 @@ private:
public:
/* Define default slots */
DEFSLOT_O(Fl_Widget, Fl_Widget, slot_label, const char *);
- DEFSLOT_O(Fl_Widget, Fl_Widget, slot_active, int);
- DEFSLOT_O(Fl_Widget, Fl_Widget, slot_visibility, int);
+ DEFSLOT_O(Fl_Widget, Fl_Widget, slot_active, long);
+ DEFSLOT_O(Fl_Widget, Fl_Widget, slot_visibility, long);
/**
* Change label of widget. This function redraws label also.