Changes for AIX (still have menu problems)

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1458 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2001-05-11 18:37:08 +00:00
parent eb474956cc
commit 9c19542bd2
3 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,5 @@
//
// "$Id: Fl_Window.H,v 1.12.2.5 2001/01/22 15:13:38 easysw Exp $"
// "$Id: Fl_Window.H,v 1.12.2.6 2001/05/11 18:37:08 easysw Exp $"
//
// Window header file for the Fast Light Tool Kit (FLTK).
//
@ -30,9 +30,12 @@
#define FL_WINDOW 0xF0 // all subclasses have type() >= this
class Fl_X;
class Fl_Window : public Fl_Group {
friend class Fl_X; Fl_X *i; // points at the system-specific stuff
friend class Fl_X;
Fl_X *i; // points at the system-specific stuff
const char* iconlabel_;
const char* xclass_;
@ -113,5 +116,5 @@ public:
#endif
//
// End of "$Id: Fl_Window.H,v 1.12.2.5 2001/01/22 15:13:38 easysw Exp $".
// End of "$Id: Fl_Window.H,v 1.12.2.6 2001/05/11 18:37:08 easysw Exp $".
//

View File

@ -1,5 +1,5 @@
//
// "$Id: fl_ask.H,v 1.7.2.3 2001/01/22 15:13:38 easysw Exp $"
// "$Id: fl_ask.H,v 1.7.2.4 2001/05/11 18:37:08 easysw Exp $"
//
// Standard dialog header file for the Fast Light Tool Kit (FLTK).
//
@ -34,8 +34,8 @@ FL_EXPORT void fl_message(const char *,...);
FL_EXPORT void fl_alert(const char *,...);
FL_EXPORT int fl_ask(const char *,...);
FL_EXPORT int fl_choice(const char *q,const char *b0,const char *b1,const char *b2,...);
FL_EXPORT const char *fl_input(const char *label, const char *deflt = 0, ...);
FL_EXPORT const char *fl_password(const char *label, const char *deflt = 0, ...);
FL_EXPORT const char *fl_input(const char *label, const char *deflt, ...);
FL_EXPORT const char *fl_password(const char *label, const char *deflt, ...);
FL_EXPORT Fl_Widget *fl_message_icon();
extern FL_EXPORT unsigned char fl_message_font_;
@ -52,5 +52,5 @@ extern FL_EXPORT const char* fl_cancel;
#endif
//
// End of "$Id: fl_ask.H,v 1.7.2.3 2001/01/22 15:13:38 easysw Exp $".
// End of "$Id: fl_ask.H,v 1.7.2.4 2001/05/11 18:37:08 easysw Exp $".
//

View File

@ -1,5 +1,5 @@
//
// "$Id: filename_list.cxx,v 1.10.2.10 2001/04/13 19:13:14 easysw Exp $"
// "$Id: filename_list.cxx,v 1.10.2.11 2001/05/11 18:37:08 easysw Exp $"
//
// Filename list routines for the Fast Light Tool Kit (FLTK).
//
@ -46,7 +46,7 @@ int filename_list(const char *d, dirent ***list) {
#elif defined(__osf__)
// OSF, DU 4.0x
return scandir(d, list, 0, (int(*)(dirent **, dirent **))numericsort);
#elif defined(__aix)
#elif defined(_AIX)
// AIX is almost standard...
return scandir(d, list, 0, (int(*)(void*, void*))numericsort);
#elif HAVE_SCANDIR && !defined(__sgi)
@ -62,5 +62,5 @@ int filename_list(const char *d, dirent ***list) {
}
//
// End of "$Id: filename_list.cxx,v 1.10.2.10 2001/04/13 19:13:14 easysw Exp $".
// End of "$Id: filename_list.cxx,v 1.10.2.11 2001/05/11 18:37:08 easysw Exp $".
//