diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-25 13:38:25 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-25 13:38:25 +0000 |
| commit | acd6bd5cc858284f12e1330d4acd49cad47e7f82 (patch) | |
| tree | 73b95e9fb388772fd51321b5043324ce73718d33 /FL/Fl_Shared_Image.H | |
| parent | 62424b33c5dc5fc74263ba4205f9562e5864b8c3 (diff) | |
Clean up string includes.
Fix Fl_Shared_Image::add_handler() and friends.
Fix Fl_PNM_Image loader.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2260 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Shared_Image.H')
| -rw-r--r-- | FL/Fl_Shared_Image.H | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FL/Fl_Shared_Image.H b/FL/Fl_Shared_Image.H index 1d555b3dd..f2a0832c9 100644 --- a/FL/Fl_Shared_Image.H +++ b/FL/Fl_Shared_Image.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Shared_Image.H,v 1.22.2.3 2002/03/29 11:59:56 easysw Exp $" +// "$Id: Fl_Shared_Image.H,v 1.22.2.4 2002/05/25 13:38:24 easysw Exp $" // // Shared image header file for the Fast Light Tool Kit (FLTK). // @@ -40,7 +40,7 @@ class Fl_Shared_Image : public Fl_Image { static Fl_Shared_Image **images_; // Shared images static int num_images_; // Number of shared images static int alloc_images_; // Allocated shared images - static Fl_Shared_Handler **handlers_; // Additional format handlers + static Fl_Shared_Handler *handlers_; // Additional format handlers static int num_handlers_; // Number of format handlers static int alloc_handlers_; // Allocated format handlers @@ -77,12 +77,12 @@ class Fl_Shared_Image : public Fl_Image { static Fl_Shared_Image *get(const char *n, int W = 0, int H = 0); static Fl_Shared_Image **images() { return images_; } static int num_images() { return num_images_; } - static void add_handler(Fl_Shared_Handler *f); - static void remove_handler(Fl_Shared_Handler *f); + static void add_handler(Fl_Shared_Handler f); + static void remove_handler(Fl_Shared_Handler f); }; #endif // !Fl_Shared_Image_H // -// End of "$Id: Fl_Shared_Image.H,v 1.22.2.3 2002/03/29 11:59:56 easysw Exp $" +// End of "$Id: Fl_Shared_Image.H,v 1.22.2.4 2002/05/25 13:38:24 easysw Exp $" // |
