mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-18 15:32:22 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
Notes:
sideshowbarker
2024-07-17 16:21:09 +09:00
Author: https://github.com/IdanHo
Commit: 086969277e
Pull-request: https://github.com/SerenityOS/serenity/pull/12321
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/bgianfo ✅
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