summaryrefslogtreecommitdiff
path: root/Userland/Services/NotificationServer/NotificationWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/NotificationServer/NotificationWindow.h')
-rw-r--r--Userland/Services/NotificationServer/NotificationWindow.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Services/NotificationServer/NotificationWindow.h b/Userland/Services/NotificationServer/NotificationWindow.h
index 48169663b3..206e57d085 100644
--- a/Userland/Services/NotificationServer/NotificationWindow.h
+++ b/Userland/Services/NotificationServer/NotificationWindow.h
@@ -26,6 +26,7 @@
#pragma once
+#include <LibGUI/ImageWidget.h>
#include <LibGUI/Window.h>
namespace NotificationServer {
@@ -46,6 +47,10 @@ private:
Gfx::IntRect m_original_rect;
i32 m_id;
+
+ GUI::Label* m_text_label;
+ GUI::Label* m_title_label;
+ GUI::ImageWidget* m_image;
};
}