summaryrefslogtreecommitdiff
path: root/LibGUI/GWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'LibGUI/GWindow.h')
-rw-r--r--LibGUI/GWindow.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/LibGUI/GWindow.h b/LibGUI/GWindow.h
index 8d45067672..7f2bbd708f 100644
--- a/LibGUI/GWindow.h
+++ b/LibGUI/GWindow.h
@@ -16,6 +16,7 @@ public:
int window_id() const { return m_window_id; }
+ String title() const;
void set_title(String&&);
int x() const { return rect().x(); }
@@ -40,7 +41,7 @@ public:
void show();
- void update();
+ void update(const Rect& = Rect());
private:
RetainPtr<GraphicsBitmap> m_backing;