Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv16152/wxLua/modules/wxluadebug/src
Modified Files:
splttree.cpp staktree.cpp wxldebug.cpp
Log Message:
remove all #pragma interface since they are no longer needed
Index: splttree.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/splttree.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** splttree.cpp 8 Aug 2006 22:54:38 -0000 1.14
--- splttree.cpp 12 Dec 2006 01:23:40 -0000 1.15
***************
*** 20,26 ****
// headers
// ----------------------------------------------------------------------------
- #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "splttree.h"
- #endif
// For compilers that support precompilation, includes "wx/wx.h".
--- 20,23 ----
***************
*** 234,238 ****
// In case we're using the generic tree control.
! void wxRemotelyScrolledTreeCtrl::PrepareDC(wxDC& dc)
{
#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
--- 231,241 ----
// In case we're using the generic tree control.
! void wxRemotelyScrolledTreeCtrl::PrepareDC(
! #if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
! wxDC& dc
! #else
! wxDC& WXUNUSED(dc)
! #endif
! )
{
#if USE_GENERIC_TREECTRL || !defined(__WXMSW__)
***************
*** 253,260 ****
// dc.SetUserScale( win->GetScaleX(), win->GetScaleY() );
}
- #else
- # ifdef UNREFERENCED_PARAMETER
- // UNREFERENCED_PARAMETER(dc); can't set dc = dc;
- # endif
#endif
}
--- 256,259 ----
Index: wxldebug.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/wxldebug.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** wxldebug.cpp 11 Dec 2006 23:25:05 -0000 1.24
--- wxldebug.cpp 12 Dec 2006 01:23:40 -0000 1.25
***************
*** 2,15 ****
// Name: wxLuaDebug.cpp
// Purpose: Debugging I/O functions for wxLua
! // Author: J. Winwood
// Created: May 2002
// Copyright: (c) 2002 Lomtick Software. All rights reserved.
// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
- // Ray Gilbert
-
- #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "wxldebug.h"
- #endif
#include "wx/wxprec.h"
--- 2,10 ----
// Name: wxLuaDebug.cpp
// Purpose: Debugging I/O functions for wxLua
! // Author: J. Winwood, Ray Gilbert
// Created: May 2002
// Copyright: (c) 2002 Lomtick Software. All rights reserved.
// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
Index: staktree.cpp
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/src/staktree.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** staktree.cpp 4 Oct 2006 05:55:02 -0000 1.32
--- staktree.cpp 12 Dec 2006 01:23:40 -0000 1.33
***************
*** 8,15 ****
/////////////////////////////////////////////////////////////////////////////
- #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "staktree.h"
- #endif
-
#include "wx/wxprec.h"
--- 8,11 ----
|