Huge cleanup of the code. Reformatting, spelling fixes, standardizing on wxWindows conventions, etc.
Changed the couple lines of code required to work with checkins of the new ODBC classes that use wxStrings. Fixed a ton of memory leaks Demo still crashes on exit though - this problem has exited for nearly a year though. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
// - to prevent Warnings under MingGW32
|
||||
// Modified by: 19990909 : mj10777@gmx.net
|
||||
// - mNoVertScroll TRUE = no / FALSE = Original Code
|
||||
// the Original Code Paints a Vertical Scroll in wxPaggedWindow
|
||||
// the Original Code Paints a Vertical Scroll in wxPagedWindow
|
||||
// which is not needed in this Version. Use TRUE for this.
|
||||
// Created: 07/09/98
|
||||
// RCS-ID: $Id$
|
||||
@@ -60,7 +60,7 @@ public:
|
||||
|
||||
virtual wxFont GetLabelingFont();
|
||||
|
||||
// FOR NOW:: scrollbars are actually related to wxPaggedWindow
|
||||
// FOR NOW:: scrollbars are actually related to wxPagedWindow
|
||||
|
||||
wxScrollBar* mpTabScroll;
|
||||
wxScrollBar* mpHorizScroll;
|
||||
@@ -154,9 +154,9 @@ public:
|
||||
* of Microsoft Developer Studio 4.xx
|
||||
*/
|
||||
|
||||
class wxPaggedWindow : public wxTabbedWindow
|
||||
class wxPagedWindow : public wxTabbedWindow
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS( wxPaggedWindow )
|
||||
DECLARE_DYNAMIC_CLASS( wxPagedWindow )
|
||||
// the protected: public: changes prevents Warnings in gcc
|
||||
protected:
|
||||
bool mScrollEventInProgress;
|
||||
@@ -199,8 +199,8 @@ public:
|
||||
|
||||
|
||||
public:
|
||||
wxPaggedWindow();
|
||||
~wxPaggedWindow();
|
||||
wxPagedWindow();
|
||||
~wxPagedWindow();
|
||||
|
||||
// NOTE:: use public methods of the base class
|
||||
// to add "pages" to this window
|
||||
|
||||
Reference in New Issue
Block a user