diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-11-15 11:27:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-11-15 16:17:25 +0100 |
commit | 4836e15ba980ea3bdccd3c063eb94f52e35646b0 (patch) | |
tree | 04c61c2e3631bc554a32427b32e8388602467df1 /vcl/inc | |
parent | a63dbd76888043bc12ae1b3b6780a10291a34b38 (diff) |
gtk4: implement CreateChildFrame
which gets the extension options tab pages working, e.g.
"English Sentence Checking"
Change-Id: Ib98f366fdcc7c51f4399372a78f78a655b3c0b86
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125242
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/unx/gtk/gtkdata.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vcl/inc/unx/gtk/gtkdata.hxx b/vcl/inc/unx/gtk/gtkdata.hxx index 5299d15a2088..0c6b73cabadc 100644 --- a/vcl/inc/unx/gtk/gtkdata.hxx +++ b/vcl/inc/unx/gtk/gtkdata.hxx @@ -195,6 +195,9 @@ inline GdkGLContext* surface_create_gl_context(GdkSurface* pSurface) void set_buildable_id(GtkBuildable* pWidget, const OString& rId); OString get_buildable_id(GtkBuildable* pWidget); +void container_remove(GtkWidget* pContainer, GtkWidget* pChild); +void container_add(GtkWidget* pContainer, GtkWidget* pChild); + #if !GTK_CHECK_VERSION(4, 0, 0) typedef GtkClipboard GdkClipboard; #endif |