remove doubled friend declaration, is in macro

This commit is contained in:
Stephen Birarda 2015-01-06 09:35:11 -08:00
parent f3255eeb0e
commit 5fadfa8c17
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);