diff options
Diffstat (limited to 'Applications/SoundPlayer/SoundPlayerWidget.h')
-rw-r--r-- | Applications/SoundPlayer/SoundPlayerWidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/SoundPlayer/SoundPlayerWidget.h b/Applications/SoundPlayer/SoundPlayerWidget.h index b9fd871b72..5d7daa9739 100644 --- a/Applications/SoundPlayer/SoundPlayerWidget.h +++ b/Applications/SoundPlayer/SoundPlayerWidget.h @@ -43,7 +43,7 @@ public: PlaybackManager& manager() { return m_manager; } private: - explicit SoundPlayerWidget(GUI::Window&, NonnullRefPtr<AClientConnection>); + explicit SoundPlayerWidget(GUI::Window&, NonnullRefPtr<Audio::ClientConnection>); void update_position(const int position); void update_ui(); @@ -77,7 +77,7 @@ private: }; GUI::Window& m_window; - NonnullRefPtr<AClientConnection> m_connection; + NonnullRefPtr<Audio::ClientConnection> m_connection; PlaybackManager m_manager; float m_sample_ratio; RefPtr<GUI::Label> m_status; |