From 653f023b2132cecc1c5841bc80f5a24b225a2da3 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Wed, 3 Feb 2021 22:03:29 +0100 Subject: Small fix in log domain container --- include/widgets/container.h | 2 +- source/widgets/container.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/widgets/container.h b/include/widgets/container.h index 98e8cff4..33e8fd7a 100644 --- a/include/widgets/container.h +++ b/include/widgets/container.h @@ -41,7 +41,7 @@ /** * Abstract handle to the container widget internal state. */ -typedef struct _window container; +typedef struct _container container; /** * @param parent The widget's parent diff --git a/source/widgets/container.c b/source/widgets/container.c index c53efd53..e83ada67 100644 --- a/source/widgets/container.c +++ b/source/widgets/container.c @@ -26,7 +26,7 @@ */ /** The log domain of this widget. */ -#define G_LOG_DOMAIN "Widgets.Window" +#define G_LOG_DOMAIN "Widgets.Container" #include #include @@ -35,7 +35,7 @@ #include "widgets/container.h" #include "theme.h" -struct _window +struct _container { widget widget; widget *child; -- cgit v1.2.3