]> git.pld-linux.org Git - packages/audacity.git/commitdiff
- Removed checkbox.h. It is not needed (provided by wxGTK-devel).
authormkochano <mkochano@pld-linux.org>
Sun, 12 May 2002 12:03:11 +0000 (12:03 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    audacity-wxGTK-2.3.2.patch -> 1.3

audacity-wxGTK-2.3.2.patch

index aec69f8c923710fcc1e5da5b225e25fd9c16ba3b..39a4dc088f1d6be08cce8bc4b72bdddbade62867 100644 (file)
@@ -87,7 +87,7 @@ diff -ruN audacity-src-0.98.orig/effects/Amplify.h audacity-src-0.98/effects/Amp
  #include <wx/textctrl.h>
  #include <wx/sizer.h>
  
-+#include "checkbox.h"
++#include <wx/checkbox.h>
 +
  // Declare window functions
  
@@ -128,61 +128,3 @@ diff -ruN audacity-src-0.98.orig/effects/Wahwah.h audacity-src-0.98/effects/Wahw
  #include <wx/dialog.h>
  #include <wx/stattext.h>
  #include <wx/slider.h>
-diff -ruN audacity-src-0.98.orig/effects/checkbox.h audacity-src-0.98/effects/checkbox.h
---- audacity-src-0.98.orig/effects/checkbox.h  Thu Jan  1 00:00:00 1970
-+++ audacity-src-0.98/effects/checkbox.h       Sat May 11 22:00:06 2002
-@@ -0,0 +1,54 @@
-+///////////////////////////////////////////////////////////////////////////////
-+// Name:        wx/checkbox.h
-+// Purpose:     wxCheckBox class interface
-+// Author:      Vadim Zeitlin
-+// Modified by:
-+// Created:     07.09.00
-+// RCS-ID:      $Id$
-+// Copyright:   (c) wxWindows team
-+// Licence:     wxWindows licence
-+///////////////////////////////////////////////////////////////////////////////
-+
-+#ifndef _WX_CHECKBOX_H_BASE_
-+#define _WX_CHECKBOX_H_BASE_
-+
-+#if wxUSE_CHECKBOX
-+
-+#include "wx/control.h"
-+
-+WXDLLEXPORT_DATA(extern const wxChar*) wxCheckBoxNameStr;
-+
-+// ----------------------------------------------------------------------------
-+// wxCheckBox: a control which shows a label and a box which may be checked
-+// ----------------------------------------------------------------------------
-+
-+class WXDLLEXPORT wxCheckBoxBase : public wxControl
-+{
-+public:
-+    // set/get the checked status of the listbox
-+    virtual void SetValue(bool value) = 0;
-+    virtual bool GetValue() const = 0;
-+
-+    bool IsChecked() const { return GetValue(); }
-+};
-+
-+#if defined(__WXUNIVERSAL__)
-+    #include "wx/univ/checkbox.h"
-+#elif defined(__WXMSW__)
-+    #include "wx/msw/checkbox.h"
-+#elif defined(__WXMOTIF__)
-+    #include "wx/motif/checkbox.h"
-+#elif defined(__WXGTK__)
-+    #include "wx/gtk/checkbox.h"
-+#elif defined(__WXMAC__)
-+    #include "wx/mac/checkbox.h"
-+#elif defined(__WXPM__)
-+    #include "wx/os2/checkbox.h"
-+#elif defined(__WXSTUBS__)
-+    #include "wx/stubs/checkbox.h"
-+#endif
-+
-+#endif // wxUSE_CHECKBOX
-+
-+#endif
-+    // _WX_CHECKBOX_H_BASE_
This page took 0.148611 seconds and 4 git commands to generate.