diff options
author | Diane Bruce <db@FreeBSD.org> | 2008-08-17 20:22:21 +0000 |
---|---|---|
committer | Diane Bruce <db@FreeBSD.org> | 2008-08-17 20:22:21 +0000 |
commit | 4f21024b902b0ffa72685a164a5ef4d27e0a49b2 (patch) | |
tree | 13e97d3d3f30f64a4f5a938e4ed7224b57050e68 /cad/basicdsp/files/patch-aboutdialog.cpp | |
parent | Mosh is A Fast R6RS Scheme interpreter. (diff) |
BasicDSP is an educational tool that makes it easy to experiment with simple
Digital Signal Processing algorithms for audio signals. The input can either
be taken from the sound card, or be a locally generated sine wave, white noise
or impulse signal. The output is fed to the sound card, as well as to a virtual
oscilloscope and spectrum analyzer.
Notes
Notes:
svn path=/head/; revision=218728
Diffstat (limited to 'cad/basicdsp/files/patch-aboutdialog.cpp')
-rw-r--r-- | cad/basicdsp/files/patch-aboutdialog.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cad/basicdsp/files/patch-aboutdialog.cpp b/cad/basicdsp/files/patch-aboutdialog.cpp new file mode 100644 index 000000000000..733a17d2aae8 --- /dev/null +++ b/cad/basicdsp/files/patch-aboutdialog.cpp @@ -0,0 +1,11 @@ +--- aboutdialog.cpp.orig 2008-08-16 23:33:09.000000000 -0400 ++++ aboutdialog.cpp 2008-08-16 23:34:13.000000000 -0400 +@@ -29,7 +29,7 @@ + // to clean this up would mean patching wxWidgets :( + splash_xpm = new wxImage(basicdsp_splash_xpm); + if (splash_xpm != NULL) +- splash_bitmap = new wxBitmap(splash_xpm); ++ splash_bitmap = new wxBitmap((const wxImage&)splash_xpm); + + if ((splash_bitmap!=NULL) && (splash_bitmap->Ok())) + { |