re-indent sources

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5746 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Bart A.M. Jourquin
2000-01-31 10:43:24 +00:00
parent 0c8c86a6b0
commit b5ce269b14
7 changed files with 2270 additions and 2260 deletions

View File

@@ -12,19 +12,19 @@
//-- all #ifdefs that the whole Project needs. ------------------------------ //-- all #ifdefs that the whole Project needs. ------------------------------
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation #pragma implementation
#pragma interface #pragma interface
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h". // For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h" #include "wx/wxprec.h"
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __BORLANDC__ #ifdef __BORLANDC__
#pragma hdrstop #pragma hdrstop
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include "wx/wx.h" #include "wx/wx.h"
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#include <wx/dbtable.h> #include <wx/dbtable.h>
@@ -77,26 +77,26 @@ char *GetExtendedDBErrorMsg(char *ErrFile, int ErrLine)
////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////
class UserDialog : public wxDialog class UserDialog : public wxDialog
{ {
public: public:
UserDialog(wxWindow* parent); UserDialog(wxWindow* parent);
virtual ~UserDialog(); virtual ~UserDialog();
void OnOK(wxCommandEvent& event); void OnOK(wxCommandEvent& event);
wxString s_UserName, s_Password; wxString s_UserName, s_Password;
private: private:
wxButton *m_OK; wxButton *m_OK;
wxStaticText *m_Label1, *m_Label2; wxStaticText *m_Label1, *m_Label2;
wxTextCtrl *m_UserName, *m_Password; wxTextCtrl *m_UserName, *m_Password;
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()
}; };
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
BEGIN_EVENT_TABLE(UserDialog, wxDialog) BEGIN_EVENT_TABLE(UserDialog, wxDialog)
EVT_BUTTON(wxID_OK, UserDialog::OnOK) EVT_BUTTON(wxID_OK, UserDialog::OnOK)
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
UserDialog::UserDialog(wxWindow *parent): UserDialog::UserDialog(wxWindow *parent):
wxDialog(parent, -1, _("ODBC user"),wxDefaultPosition, wxSize(310, 300),wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE) wxDialog(parent, -1, _("ODBC user"),wxDefaultPosition, wxSize(310, 300),wxDIALOG_MODAL | wxDEFAULT_DIALOG_STYLE)
{ {
wxLayoutConstraints* layout; wxLayoutConstraints* layout;
@@ -547,3 +547,9 @@ void BrowserDB::OnFilldbTyp()
i_dbTyp[0] = 4; s_dbTyp[0] = ""; i_dbTyp[0] = 4; s_dbTyp[0] = "";
} }
//---------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------

View File

@@ -47,16 +47,16 @@ BEGIN_EVENT_TABLE(DBGrid, wxGrid)
EVT_GRID_CELL_CHANGE( DBGrid::OnCellChange ) EVT_GRID_CELL_CHANGE( DBGrid::OnCellChange )
EVT_MENU(GRID_EDIT,DBGrid::OnModusEdit) EVT_MENU(GRID_EDIT,DBGrid::OnModusEdit)
EVT_MENU(GRID_BROWSE,DBGrid::OnModusBrowse) EVT_MENU(GRID_BROWSE,DBGrid::OnModusBrowse)
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// wxListCtrl(parent, id, pos, size, style) // wxListCtrl(parent, id, pos, size, style)
// wxGrid(parent,-1,wxPoint( 0, 0 ), wxSize( 400, 300 ) ); // wxGrid(parent,-1,wxPoint( 0, 0 ), wxSize( 400, 300 ) );
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// DBGrid // DBGrid
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// DBGrid::DBGrid(wxWindow *parent, const wxWindowID id,const wxPoint& pos,const wxSize& size): // DBGrid::DBGrid(wxWindow *parent, const wxWindowID id,const wxPoint& pos,const wxSize& size):
// wxGrid(parent, id, pos, size) // wxGrid(parent, id, pos, size)
DBGrid::DBGrid(wxWindow *parent, const wxWindowID id,const wxPoint& pos,const wxSize& size, long style): DBGrid::DBGrid(wxWindow *parent, const wxWindowID id,const wxPoint& pos,const wxSize& size, long style):
wxGrid(parent, id, pos, size, style) wxGrid(parent, id, pos, size, style)
{ {
f_Temp = new wxFont(10,wxSWISS,wxNORMAL,wxBOLD,FALSE,"Comic Sans MS"); f_Temp = new wxFont(10,wxSWISS,wxNORMAL,wxBOLD,FALSE,"Comic Sans MS");
@@ -369,3 +369,4 @@ void DBGrid::OnRangeSelected( wxGridRangeSelectEvent& ev )
ev.Skip(); ev.Skip();
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@@ -11,19 +11,19 @@
//-- all #ifdefs that the whole Project needs. ------------------------------ //-- all #ifdefs that the whole Project needs. ------------------------------
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation #pragma implementation
#pragma interface #pragma interface
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h". // For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h" #include "wx/wxprec.h"
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __BORLANDC__ #ifdef __BORLANDC__
#pragma hdrstop #pragma hdrstop
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include "wx/wx.h" #include "wx/wx.h"
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef __WXMSW__ #ifndef __WXMSW__
@@ -48,13 +48,13 @@ BEGIN_EVENT_TABLE(DBTree, wxTreeCtrl)
EVT_MENU(DATA_DB,DBTree::OnDBClass) EVT_MENU(DATA_DB,DBTree::OnDBClass)
EVT_MENU(DATA_TABLE,DBTree::OnTableClass) EVT_MENU(DATA_TABLE,DBTree::OnTableClass)
EVT_MENU(DATA_TABLE_ALL,DBTree::OnTableClassAll) EVT_MENU(DATA_TABLE_ALL,DBTree::OnTableClassAll)
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// DBTree implementation // DBTree implementation
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(DBTree, wxTreeCtrl) IMPLEMENT_DYNAMIC_CLASS(DBTree, wxTreeCtrl)
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
DBTree::DBTree(wxWindow *parent) : wxTreeCtrl(parent) DBTree::DBTree(wxWindow *parent) : wxTreeCtrl(parent)
{ {
} }
DBTree::DBTree(wxWindow *parent, const wxWindowID id,const wxPoint& pos, const wxSize& size, long style) DBTree::DBTree(wxWindow *parent, const wxWindowID id,const wxPoint& pos, const wxSize& size, long style)
@@ -78,14 +78,14 @@ DBTree::DBTree(wxWindow *parent, const wxWindowID id,const wxPoint& pos, const w
p_imageListNormal->Add(wxICON(DocOpen)); p_imageListNormal->Add(wxICON(DocOpen));
p_imageListNormal->Add(wxICON(DocOpen)); p_imageListNormal->Add(wxICON(DocOpen));
#else #else
#include "bitmaps/logo.xpm" #include "bitmaps/logo.xpm"
#include "bitmaps/dsnclose.xpm" #include "bitmaps/dsnclose.xpm"
#include "bitmaps/dsnopen.xpm" #include "bitmaps/dsnopen.xpm"
#include "bitmaps/tab.xpm" #include "bitmaps/tab.xpm"
#include "bitmaps/key.xpm" #include "bitmaps/key.xpm"
#include "bitmaps/keyf.xpm" #include "bitmaps/keyf.xpm"
#include "bitmaps/d_open.xpm" #include "bitmaps/d_open.xpm"
#include "bitmaps/d_closed.xpm" #include "bitmaps/d_closed.xpm"
#endif #endif
SetImageList(p_imageListNormal); SetImageList(p_imageListNormal);
@@ -375,3 +375,5 @@ void DBTree::OnMouseMove(wxMouseEvent &event)
TreePos = event.GetPosition(); TreePos = event.GetPosition();
} }
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------

View File

@@ -10,19 +10,19 @@
//-- all #ifdefs that the whole Project needs. ------------------------------ //-- all #ifdefs that the whole Project needs. ------------------------------
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation #pragma implementation
#pragma interface #pragma interface
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h". // For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h" #include "wx/wxprec.h"
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __BORLANDC__ #ifdef __BORLANDC__
#pragma hdrstop #pragma hdrstop
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include "wx/wx.h" #include "wx/wx.h"
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
//-- all #includes that every .cpp needs ----19990807.mj10777 --- //-- all #includes that every .cpp needs ----19990807.mj10777 ---
@@ -37,7 +37,7 @@ DlgUser::DlgUser(wxWindow *parent, const wxString& title, const wxPoint& pos, co
wxButton *but2 = new wxButton(this, wxID_CANCEL, "Cancel", wxPoint(210,110), wxSize(80, 30)); wxButton *but2 = new wxButton(this, wxID_CANCEL, "Cancel", wxPoint(210,110), wxSize(80, 30));
(void)new wxStaticText(this, -1,_("User ID"), wxPoint(20, 40), wxSize(50, 20),wxALIGN_LEFT); (void)new wxStaticText(this, -1,_("User ID"), wxPoint(20, 40), wxSize(50, 20),wxALIGN_LEFT);
(void)new wxStaticText(this, -1,_("Password"), wxPoint(20, 80), wxSize(50, 20),wxALIGN_LEFT); (void)new wxStaticText(this, -1,_("Password"), wxPoint(20, 80), wxSize(50, 20),wxALIGN_LEFT);
// but1->SetFocus(); // but1->SetFocus();
but1->SetDefault(); but1->SetDefault();
} }
void DlgUser::OnInit() void DlgUser::OnInit()
@@ -52,9 +52,9 @@ void DlgUser::OnInit()
BEGIN_EVENT_TABLE(DlgUser, wxDialog) BEGIN_EVENT_TABLE(DlgUser, wxDialog)
EVT_BUTTON(wxID_OK, DlgUser::OnOk) EVT_BUTTON(wxID_OK, DlgUser::OnOk)
EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel) EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel)
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) ) void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) )
{ {
canceled = FALSE; canceled = FALSE;
s_User = tc_User->GetValue(); s_User = tc_User->GetValue();

View File

@@ -11,19 +11,19 @@
//-- all #ifdefs that the whole Project needs. ------------------------------ //-- all #ifdefs that the whole Project needs. ------------------------------
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation #pragma implementation
#pragma interface #pragma interface
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h". // For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h" #include "wx/wxprec.h"
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __BORLANDC__ #ifdef __BORLANDC__
#pragma hdrstop #pragma hdrstop
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include "wx/wx.h" #include "wx/wx.h"
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
@@ -33,7 +33,7 @@
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
//-- Some Global Vars for all Files (extern in ?.h needed) ----------------- //-- Some Global Vars for all Files (extern in ?.h needed) -----------------
// Global structure for holding ODBC connection information // Global structure for holding ODBC connection information
struct DbStuff DbConnectInf; struct DbStuff DbConnectInf;
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
wxConfigBase *p_ProgramCfg; // All Config and Path information wxConfigBase *p_ProgramCfg; // All Config and Path information
wxLogTextCtrl *p_LogBook; // All Log messages wxLogTextCtrl *p_LogBook; // All Log messages
@@ -318,10 +318,10 @@ void mjDoc::OnLeer(wxString Aufrufer)
} }
//---------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------
BEGIN_EVENT_TABLE(DocSplitterWindow, wxSplitterWindow) BEGIN_EVENT_TABLE(DocSplitterWindow, wxSplitterWindow)
END_EVENT_TABLE() END_EVENT_TABLE()
//---------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------
// Define a constructor for my p_Splitter // Define a constructor for my p_Splitter
DocSplitterWindow::DocSplitterWindow(wxWindow *parent, wxWindowID id) : wxSplitterWindow(parent, id) DocSplitterWindow::DocSplitterWindow(wxWindow *parent, wxWindowID id) : wxSplitterWindow(parent, id)
{ {
} }
//---------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------

View File

@@ -11,29 +11,29 @@
//-- all #ifdefs that the whole Project needs. ------------------------------ //-- all #ifdefs that the whole Project needs. ------------------------------
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation #pragma implementation
#pragma interface #pragma interface
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// For compilers that support precompilation, includes "wx/wx.h". // For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h" #include "wx/wxprec.h"
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifdef __BORLANDC__ #ifdef __BORLANDC__
#pragma hdrstop #pragma hdrstop
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef WX_PRECOMP #ifndef WX_PRECOMP
#include "wx/wx.h" #include "wx/wx.h"
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#ifndef __WXMSW__ #ifndef __WXMSW__
#include "bitmaps/d_closed.xpm" #include "bitmaps/d_closed.xpm"
#include "bitmaps/d_open.xpm" #include "bitmaps/d_open.xpm"
#include "bitmaps/f_closed.xpm" #include "bitmaps/f_closed.xpm"
#include "bitmaps/f_open.xpm" #include "bitmaps/f_open.xpm"
#include "bitmaps/logo.xpm" #include "bitmaps/logo.xpm"
#include "bitmaps/dsnclose.xpm" #include "bitmaps/dsnclose.xpm"
#include "bitmaps/dsnopen.xpm" #include "bitmaps/dsnopen.xpm"
#endif #endif
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
//-- all #includes that every .cpp needs --- 19990807.mj10777 --- //-- all #includes that every .cpp needs --- 19990807.mj10777 ---
@@ -52,13 +52,13 @@ BEGIN_EVENT_TABLE(PgmCtrl, wxTreeCtrl)
EVT_LEFT_DCLICK(PgmCtrl::OnSelChanged) EVT_LEFT_DCLICK(PgmCtrl::OnSelChanged)
EVT_TREE_ITEM_RIGHT_CLICK(TREE_CTRL_PGM,PgmCtrl::OnRightSelect) EVT_TREE_ITEM_RIGHT_CLICK(TREE_CTRL_PGM,PgmCtrl::OnRightSelect)
EVT_MENU(PGMCTRL_ODBC_USER,PgmCtrl::OnUserPassword) EVT_MENU(PGMCTRL_ODBC_USER,PgmCtrl::OnUserPassword)
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// PgmCtrl implementation // PgmCtrl implementation
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(PgmCtrl, wxTreeCtrl) IMPLEMENT_DYNAMIC_CLASS(PgmCtrl, wxTreeCtrl)
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
PgmCtrl::PgmCtrl(wxWindow *parent) : wxTreeCtrl(parent) PgmCtrl::PgmCtrl(wxWindow *parent) : wxTreeCtrl(parent)
{ {
} }
PgmCtrl::PgmCtrl(wxWindow *parent, const wxWindowID id,const wxPoint& pos, const wxSize& size, long style) PgmCtrl::PgmCtrl(wxWindow *parent, const wxWindowID id,const wxPoint& pos, const wxSize& size, long style)

View File

@@ -43,8 +43,8 @@
// Implementation for class twTabInfo // Implementation for class twTabInfo
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS( twTabInfo, wxObject ) IMPLEMENT_DYNAMIC_CLASS( twTabInfo, wxObject )
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
twTabInfo::twTabInfo() twTabInfo::twTabInfo()
: mpContent( 0 ) : mpContent( 0 )
{} {}
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
@@ -100,16 +100,16 @@ wxWindow& twTabInfo::GetContent()
// Implementation for class wxTabbedWindow // Implementation for class wxTabbedWindow
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS( wxTabbedWindow, wxPanel ) IMPLEMENT_DYNAMIC_CLASS( wxTabbedWindow, wxPanel )
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
BEGIN_EVENT_TABLE( wxTabbedWindow, wxPanel ) BEGIN_EVENT_TABLE( wxTabbedWindow, wxPanel )
EVT_SIZE ( wxTabbedWindow::OnSize ) EVT_SIZE ( wxTabbedWindow::OnSize )
EVT_PAINT( wxTabbedWindow::OnPaint ) EVT_PAINT( wxTabbedWindow::OnPaint )
EVT_LEFT_DOWN( wxTabbedWindow::OnLButtonDown ) EVT_LEFT_DOWN( wxTabbedWindow::OnLButtonDown )
// TDB:: filciker reduction // TDB:: filciker reduction
// EVT_ERASE_BACKGROUND( wxTabbedWindow::OnBkErase ) // EVT_ERASE_BACKGROUND( wxTabbedWindow::OnBkErase )
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
wxTabbedWindow::wxTabbedWindow() wxTabbedWindow::wxTabbedWindow()
: mpTabScroll ( NULL ), : mpTabScroll ( NULL ),
mpHorizScroll( NULL ), mpHorizScroll( NULL ),
@@ -648,22 +648,22 @@ void wxTabbedWindow::OnLButtonDown( wxMouseEvent& event )
// Implementation for class wxPaggedWindow // Implementation for class wxPaggedWindow
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS( wxPaggedWindow, wxTabbedWindow ) IMPLEMENT_DYNAMIC_CLASS( wxPaggedWindow, wxTabbedWindow )
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
BEGIN_EVENT_TABLE( wxPaggedWindow, wxTabbedWindow ) BEGIN_EVENT_TABLE( wxPaggedWindow, wxTabbedWindow )
EVT_SIZE ( wxPaggedWindow::OnSize ) EVT_SIZE ( wxPaggedWindow::OnSize )
EVT_PAINT ( wxPaggedWindow::OnPaint ) EVT_PAINT ( wxPaggedWindow::OnPaint )
EVT_LEFT_DOWN( wxPaggedWindow::OnLButtonDown ) EVT_LEFT_DOWN( wxPaggedWindow::OnLButtonDown )
EVT_LEFT_UP ( wxPaggedWindow::OnLButtonUp ) EVT_LEFT_UP ( wxPaggedWindow::OnLButtonUp )
EVT_MOTION ( wxPaggedWindow::OnMouseMove ) EVT_MOTION ( wxPaggedWindow::OnMouseMove )
EVT_SCROLL ( wxPaggedWindow::OnScroll ) EVT_SCROLL ( wxPaggedWindow::OnScroll )
END_EVENT_TABLE() END_EVENT_TABLE()
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// border for pagged-window is 2 shaded-lines // border for pagged-window is 2 shaded-lines
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
#undef BORDER_SZ #undef BORDER_SZ
#define BORDER_SZ 2 #define BORDER_SZ 2
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
wxPaggedWindow::wxPaggedWindow() wxPaggedWindow::wxPaggedWindow()
: mScrollEventInProgress( FALSE ), : mScrollEventInProgress( FALSE ),
@@ -1141,3 +1141,4 @@ void wxPaggedWindow::OnScroll( wxScrollEvent& event )
} }
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------