mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
Merge pull request #4044 from birarda/lasagna-not-spaghetti
remove doubled friend declarations
This commit is contained in:
commit
9be3733b23
5 changed files with 1 additions and 8 deletions
|
@ -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();
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -33,8 +33,6 @@ public:
|
|||
|
||||
void render(int width, int height);
|
||||
|
||||
friend class DependencyManager;
|
||||
|
||||
public slots:
|
||||
void toggle();
|
||||
void togglePause() { _isPaused = !_isPaused; }
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue