lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [5874] Prefer to keep members private


From: Greg Chicares
Subject: [lmi-commits] [5874] Prefer to keep members private
Date: Fri, 07 Mar 2014 16:07:11 +0000

Revision: 5874
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=5874
Author:   chicares
Date:     2014-03-07 16:07:11 +0000 (Fri, 07 Mar 2014)
Log Message:
-----------
Prefer to keep members private

Modified Paths:
--------------
    lmi/trunk/main_wx_test.cpp
    lmi/trunk/skeleton.hpp

Modified: lmi/trunk/main_wx_test.cpp
===================================================================
--- lmi/trunk/main_wx_test.cpp  2014-03-07 16:05:41 UTC (rev 5873)
+++ lmi/trunk/main_wx_test.cpp  2014-03-07 16:07:11 UTC (rev 5874)
@@ -50,10 +50,12 @@
 {
   public:
     SkeletonTest() {}
-    virtual bool OnInit();
 
   private:
     void RunTheTests();
+
+    // wxApp overrides.
+    virtual bool OnInit();
 };
 
 IMPLEMENT_APP_NO_MAIN(SkeletonTest)

Modified: lmi/trunk/skeleton.hpp
===================================================================
--- lmi/trunk/skeleton.hpp      2014-03-07 16:05:41 UTC (rev 5873)
+++ lmi/trunk/skeleton.hpp      2014-03-07 16:07:11 UTC (rev 5874)
@@ -62,11 +62,8 @@
     wxMDIChildFrame* CreateChildFrame(wxDocument*, ViewEx*);
 
   protected:
-    // wxApp overrides.
-    virtual bool OnExceptionInMainLoop ();
-    virtual int  OnExit                ();
-    virtual bool OnInit                ();
-    virtual void OnUnhandledException  ();
+    // wxApp overrides that are further overridden in gui test.
+    virtual bool OnInit();
 
   private:
     wxMenuBar* AdjustMenus(wxMenuBar*);
@@ -116,6 +113,11 @@
     void UponWindowTileHorizontally       (wxCommandEvent&);
     void UponWindowTileVertically         (wxCommandEvent&);
 
+    // wxApp overrides.
+    virtual bool OnExceptionInMainLoop ();
+    virtual int  OnExit                ();
+    virtual void OnUnhandledException  ();
+
     bool ProcessCommandLine(int argc, char* argv[]);
     void UpdateViews();
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]