From: Leland <ja...@ho...> - 2008-03-16 04:20:45
|
On 3/15/08 10:37 PM, "Pete Stieber" <pst...@ve...> wrote: > > Let me know if you have any difficulties. > Awesome...plays like a charm. I see you took the smart approach (unlike me) and pulled most of the incomplete dialogs and wound up with a decent base. There were a couple of build problems. The first was related to "cout" not being defined. Just added an include for iostream to get around it. The other was a few of these: 1>------ Build started: Project: A JazzPlusPlus Application, Configuration: Debug GUI VC8 Win32 ------ 1>Compiling... 1>Audio.cpp 1>..\src\Audio.cpp(956) : error C2666: 'wxDialog::wxDialog' : 2 overloads have similar conversions 1> C:\Documents and Settings\Administrator\My Documents\wxMSW-2.8.7\wxMSW-2.8.7-VC8\include\wx/msw/dialog.h(105): could be 'wxDialog::wxDialog(wxWindow *,const wxString &,bool,int,int,int,int,long,const wxString &)' 1> C:\Documents and Settings\Administrator\My Documents\wxMSW-2.8.7\wxMSW-2.8.7-VC8\include\wx/msw/dialog.h(33): or 'wxDialog::wxDialog(wxWindow *,wxWindowID,const wxString &,const wxPoint &,const wxSize &,long,const wxString &)' 1> while trying to match the argument list '(wxWindow *, , const char [16])' 1>Build log was saved at "file://c:\Documents and Settings\Administrator\My Documents\jazzplusplus\trunk\jazz\vc8\Debug GUI VC8\BuildLog.htm" 1>A JazzPlusPlus Application - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== Just wrapped the title in a wxString() to get it to build. Leland |