mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:37:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -21,22 +21,22 @@ class Notification : public Core::Object {
|
|||
public:
|
||||
virtual ~Notification() override;
|
||||
|
||||
const String& text() const { return m_text; }
|
||||
void set_text(const String& text)
|
||||
String const& text() const { return m_text; }
|
||||
void set_text(String const& text)
|
||||
{
|
||||
m_text_dirty = true;
|
||||
m_text = text;
|
||||
}
|
||||
|
||||
const String& title() const { return m_title; }
|
||||
void set_title(const String& title)
|
||||
String const& title() const { return m_title; }
|
||||
void set_title(String const& title)
|
||||
{
|
||||
m_title_dirty = true;
|
||||
m_title = title;
|
||||
}
|
||||
|
||||
const Gfx::Bitmap* icon() const { return m_icon; }
|
||||
void set_icon(const Gfx::Bitmap* icon)
|
||||
Gfx::Bitmap const* icon() const { return m_icon; }
|
||||
void set_icon(Gfx::Bitmap const* icon)
|
||||
{
|
||||
m_icon_dirty = true;
|
||||
m_icon = icon;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue