Small fix in log domain container

This commit is contained in:
Dave Davenport 2021-02-03 22:03:29 +01:00
parent 50c50d6d76
commit 653f023b21
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -26,7 +26,7 @@
*/
/** The log domain of this widget. */
#define G_LOG_DOMAIN "Widgets.Window"
#define G_LOG_DOMAIN "Widgets.Container"
#include <config.h>
#include <stdio.h>
@ -35,7 +35,7 @@
#include "widgets/container.h"
#include "theme.h"
struct _window
struct _container
{
widget widget;
widget *child;