haiku/src/apps/soundrecorder
Ingo Weinhold 758b1d0e05 Fixes that make Haiku build with gcc 4. Mainly out of the following
categories:
* Missing includes (like <stdlib.h> and <string.h>).
* Linking against $(TARGET_LIBSTDC++) instead of libstdc++.r4.so.
* Local variables shadowing parameters.
* Default parameters in function definitions (as opposed to function
  declarations).
* All C++ stuff (nothrow, map, set, vector, min, max,...) must be imported
  explicitly from the std:: namespace now.
* "new (sometype)[...]" must read "new sometype[...]", even if sometype is
  something like "const char *".
* __FUNCTION__ is no longer a string literal (but a string expression), i.e.
  'printf(__FUNCTION__ ": ...\n")' is invalid code.
* A type cast results in a non-lvalue. E.g. "(char *)buffer += bytes"
  is an invalid expression.
* "friend class SomeClass" only works when SomeClass is known before.
  Otherwise the an inner class with that name is considered as friend.
  gcc 4 is much pickier about scopes.
* gcc 4 is generally stricter with respect to type conversions in C.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14878 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-12 23:27:14 +00:00
..
array_delete.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
DrawButton.cpp added a loop button 2005-07-05 22:55:35 +00:00
DrawButton.h added a loop button 2005-07-05 22:55:35 +00:00
DrawingTidbits.cpp Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
DrawingTidbits.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
FileUtils.cpp Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
FileUtils.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
icon_button.h added a loop button 2005-07-05 22:55:35 +00:00
Jamfile Merged changes from branch build_system_redesign at revision 14573. 2005-10-29 16:27:43 +00:00
RecorderApp.cpp signature fix 2005-06-13 13:51:53 +00:00
RecorderApp.h signature fix 2005-06-13 13:51:53 +00:00
RecorderWindow.cpp Merged changes from branch build_system_redesign at revision 14573. 2005-10-29 16:27:43 +00:00
RecorderWindow.h added a loop button 2005-07-05 22:55:35 +00:00
ScopeView.cpp now count frames only once 2005-07-05 19:04:59 +00:00
ScopeView.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
SoundConsumer.cpp links with our libs on haiku 2005-07-06 12:26:35 +00:00
SoundConsumer.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
SoundListView.cpp Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
SoundListView.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
SoundPrivate.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
SoundRecorder.rdef signature fix 2005-06-13 13:51:53 +00:00
SoundUtils.cpp Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
SoundUtils.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
TrackSlider.cpp Fixes that make Haiku build with gcc 4. Mainly out of the following 2005-11-12 23:27:14 +00:00
TrackSlider.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
TransportButton.cpp Fixes that make Haiku build with gcc 4. Mainly out of the following 2005-11-12 23:27:14 +00:00
TransportButton.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
UpDownButton.cpp Fixes that make Haiku build with gcc 4. Mainly out of the following 2005-11-12 23:27:14 +00:00
UpDownButton.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
VolumeSlider.cpp Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
VolumeSlider.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
VUView.cpp Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00
VUView.h Added SoundRecorder (inspired by SoundCapture from beos samples) 2005-06-09 20:28:21 +00:00