Style fixes

This commit is contained in:
Stefano Ceccherini
2014-09-21 19:21:34 +02:00
parent 94bfc1f561
commit b2e8d9627a
4 changed files with 10 additions and 15 deletions
+3 -6
View File
@@ -21,8 +21,7 @@
namespace BPrivate {
class BMidiGlue: public BMidiLocalConsumer
{
class BMidiGlue: public BMidiLocalConsumer {
public:
BMidiGlue(BMidi* midiObject, const char* name = NULL);
@@ -60,12 +59,11 @@ public:
virtual void TempoChange(int32 beatsPerMinute, bigtime_t time);
private:
BMidi* fMidiObject;
};
class BMidiPortGlue: public BMidiLocalConsumer
{
class BMidiPortGlue: public BMidiLocalConsumer {
public:
BMidiPortGlue(BMidiPort* midiObject, const char* name = NULL);
@@ -103,7 +101,6 @@ public:
virtual void TempoChange(int32 beatsPerMinute, bigtime_t time);
private:
BMidiPort* fMidiObject;
};
-2
View File
@@ -29,10 +29,8 @@
BSamples::BSamples()
{
if (be_synth == NULL)
{
new BSynth();
}
}
//------------------------------------------------------------------------------