From 150a9f27eefa22b5fffba67a5f3d57e8d06331d5 Mon Sep 17 00:00:00 2001 From: Bill-Gray Date: Sat, 20 Aug 2022 13:44:56 -0400 Subject: [PATCH] PANELOBS really ought to be completely private to 'panel.c'. --- panel.h | 1 - pdcurses/panel.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/panel.h b/panel.h index c3424a34..5bbc34f6 100644 --- a/panel.h +++ b/panel.h @@ -14,7 +14,6 @@ extern "C" { #endif -typedef struct panelobs PANELOBS; typedef struct panel PANEL; PDCEX int bottom_panel(PANEL *pan); diff --git a/pdcurses/panel.c b/pdcurses/panel.c index 3c4ca77b..fe97f8e9 100644 --- a/pdcurses/panel.c +++ b/pdcurses/panel.c @@ -130,6 +130,8 @@ panel #include #include +typedef struct panelobs PANELOBS; + struct panelobs { struct panelobs *above;