1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 09:03:36 +02:00

Update replacement files for wxWidgets 2.8.11, so new options are supported. Eliminate changes that have no effect, to make it easier to update in future. Reduce verbiage. Add installation options.

This commit is contained in:
v.audacity
2010-12-20 04:25:39 +00:00
parent 275e7f1de1
commit 4f6c56450a
4 changed files with 39 additions and 15 deletions

View File

@@ -4,7 +4,7 @@
// Author: Julian Smart
// Modified by:
// Created: 2003-02-12
// RCS-ID: $Id: access.cpp,v 1.2 2008-10-23 03:12:30 windinthew Exp $
// RCS-ID: $Id: access.cpp 62067 2009-09-24 10:15:06Z JS $
// Copyright: (c) 2003 Julian Smart
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
@@ -187,7 +187,8 @@ class wxIAccessible : public IAccessible
{
public:
wxIAccessible(wxAccessible *pAccessible);
// Called to indicate object should prepare to be deleted.
// Called to indicate object should prepare to be deleted.
void Quiesce();
DECLARE_IUNKNOWN_METHODS;
@@ -338,6 +339,7 @@ public:
private:
wxAccessible *m_pAccessible; // pointer to C++ class we belong to
bool m_bQuiescing; // Object is to be deleted
DECLARE_NO_COPY_CLASS(wxIAccessible)
};

View File

@@ -4,7 +4,7 @@
// Author: Julian Smart
// Modified by:
// Created: 01/02/97
// RCS-ID: $Id: setup.h,v 1.3 2009-07-06 02:42:42 windinthew Exp $
// RCS-ID: $Id: setup0.h 60190 2009-04-16 00:57:35Z KO $
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@ -579,6 +579,18 @@
#define wxUSE_GRAPHICS_CONTEXT 0
#endif
// Enable the new wxCairoContext classes for an advanced
// 2D drawing API. (Still somewhat experimental)
//
// Please note that you will need to link with Cairo for this to work.
//
// Default is 0
//
// Recommended setting: 1
#ifndef wxUSE_CAIRO
#define wxUSE_CAIRO 0
#endif
// ----------------------------------------------------------------------------
// Individual GUI controls
// ----------------------------------------------------------------------------
@@ -1042,7 +1054,7 @@
// ----------------------------------------------------------------------------
// wxSingleInstanceChecker class allows to verify at startup if another program
// instance is running (it is only available under Win32)
W// instance is running (available only under Win32).
//
// Default is 1
//