diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-02-23 22:12:38 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-02-23 22:12:38 +0000 |
| commit | fc4b790f1fd5c9420924c64aca3d43362aa78146 (patch) | |
| tree | 3c4e7cbf8211f2377a52b3a6875fe98abfaf13aa /FL | |
| parent | ca6a54d30dd54d1ab3c00aaede52ac4278e94d12 (diff) | |
Oops - forgot that the OS/2 port doesn't use the WIN32 stuff - restored
the old inline functions for x() and y() under OS/2...
git-svn-id: file:///fltk/svn/fltk/trunk@338 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl.H | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ // -// "$Id: Fl.H,v 1.7 1999/02/19 15:34:07 mike Exp $" +// "$Id: Fl.H,v 1.8 1999/02/23 22:12:38 mike Exp $" // // Main header file for the Fast Light Tool Kit (FLTK). // @@ -145,13 +145,13 @@ public: static FL_EXPORT void paste(Fl_Widget &receiver); // screen size: -#if defined(WIN32) || defined(__EMX__) +#if defined(WIN32) static FL_EXPORT int x(); static FL_EXPORT int y(); #else static FL_EXPORT int x() {return 0;} static FL_EXPORT int y() {return 0;} -#endif /* WIN32 || __EMX__ */ +#endif /* WIN32 */ static FL_EXPORT int w(); static FL_EXPORT int h(); @@ -204,5 +204,5 @@ public: #endif // -// End of "$Id: Fl.H,v 1.7 1999/02/19 15:34:07 mike Exp $". +// End of "$Id: Fl.H,v 1.8 1999/02/23 22:12:38 mike Exp $". // |
