mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:17:35 +00:00
LibGUI: Rename NotificationServerConnection
Rename NotificationServerConnection=>ConnectionToNotificationServer. This was done with CLion's automatic rename feature.
This commit is contained in:
parent
493f604dba
commit
2bc8e32af0
2 changed files with 7 additions and 7 deletions
|
@ -11,12 +11,12 @@
|
|||
|
||||
namespace GUI {
|
||||
|
||||
class NotificationServerConnection;
|
||||
class ConnectionToNotificationServer;
|
||||
|
||||
class Notification : public Core::Object {
|
||||
C_OBJECT(Notification);
|
||||
|
||||
friend class NotificationServerConnection;
|
||||
friend class ConnectionToNotificationServer;
|
||||
|
||||
public:
|
||||
virtual ~Notification() override;
|
||||
|
@ -62,7 +62,7 @@ private:
|
|||
|
||||
bool m_destroyed { false };
|
||||
bool m_shown { false };
|
||||
RefPtr<NotificationServerConnection> m_connection;
|
||||
RefPtr<ConnectionToNotificationServer> m_connection;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue