FLTK logo

[master] f253296 - Class Fl_Single_Window declares but doesn't implement method make_current(). Also, add missing doc for methods Fl_XXX_Window::show(int, char**).

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[master] f253296 - Class Fl_Single_Window declares but doesn't implement method make_current(). Also, add missing doc for methods Fl_XXX_Window::show(int, char**). "ManoloFLTK" Oct 07, 2022  
 
commit f2532964cc8b326d00354f11d551727795a99319
Author:     ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>
AuthorDate: Fri Oct 7 09:21:37 2022 +0200
Commit:     ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>
CommitDate: Fri Oct 7 09:21:37 2022 +0200

    Class Fl_Single_Window declares but doesn't implement method make_current().
    Also, add missing doc for methods Fl_XXX_Window::show(int, char**).

 FL/Fl_Double_Window.H  | 1 +
 FL/Fl_Overlay_Window.H | 1 +
 FL/Fl_Single_Window.H  | 3 +--
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git FL/Fl_Double_Window.H FL/Fl_Double_Window.H
index b3396c4..73f8fdd 100644
--- FL/Fl_Double_Window.H
+++ FL/Fl_Double_Window.H
@@ -35,6 +35,7 @@ public:
   */
   virtual Fl_Double_Window *as_double_window() {return this; }
   void show();
+  /** Same as Fl_Window::show(int a, char **b) */
   void show(int a, char **b) {Fl_Window::show(a,b);}
   void resize(int,int,int,int);
   void hide();
diff --git FL/Fl_Overlay_Window.H FL/Fl_Overlay_Window.H
index d19bc3d..13676ab 100644
--- FL/Fl_Overlay_Window.H
+++ FL/Fl_Overlay_Window.H
@@ -70,6 +70,7 @@ protected:
    */
   Fl_Overlay_Window(int X, int Y, int W, int H, const char *l=0);
 public:
+  /** Same as Fl_Window::show(int a, char **b) */
   void show(int a, char **b) {Fl_Double_Window::show(a,b);}
   virtual Fl_Overlay_Window *as_overlay_window() {return this; }
 };
diff --git FL/Fl_Single_Window.H FL/Fl_Single_Window.H
index 01878db..bab37b4 100644
--- FL/Fl_Single_Window.H
+++ FL/Fl_Single_Window.H
@@ -32,6 +32,7 @@
 class FL_EXPORT Fl_Single_Window : public Fl_Window {
 public:
   void show();
+  /** Same as Fl_Window::show(int a, char **b) */
   void show(int a, char **b) {Fl_Window::show(a,b);}
 
    /**
@@ -45,8 +46,6 @@ public:
     position, size, and label (title) string.
   */
   Fl_Single_Window(int X, int Y, int W, int H, const char *l=0);
-
-  int make_current();
 };
 
 #endif
Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.