Merge pull request #4044 from birarda/lasagna-not-spaghetti

remove doubled friend declarations
This commit is contained in:
Andrew Meadows 2015-01-06 09:52:31 -08:00
commit 9be3733b23
5 changed files with 1 additions and 8 deletions

View file

@ -110,7 +110,7 @@ public:
void setRecorder(RecorderPointer recorder) { _recorder = recorder; }
static const float CALLBACK_ACCELERATOR_RATIO;
friend class DependencyManager;
public slots:
void start();
void stop();

View file

@ -25,7 +25,6 @@ class AudioIOStatsRenderer : public QObject {
public:
void render(const float* color, int width, int height);
friend class DependencyManager;
public slots:
void toggle() { _isEnabled = !_isEnabled; }
void toggleShowInjectedStreams() { _shouldShowInjectedStreams = !_shouldShowInjectedStreams; }

View file

@ -33,8 +33,6 @@ public:
void render(int width, int height);
friend class DependencyManager;
public slots:
void toggle();
void togglePause() { _isPaused = !_isPaused; }

View file

@ -19,8 +19,6 @@ class AudioToolBox : public QObject {
public:
void render(int x, int y, bool boxed);
friend class DependencyManager;
bool mousePressEvent(int x, int y);
protected:
AudioToolBox();

View file

@ -53,8 +53,6 @@ public:
void loadSettings(const QString& lookupString = QString());
friend class DependencyManager;
public slots:
void handleLookupString(const QString& lookupString);
void goToUser(const QString& username);