summaryrefslogtreecommitdiffstats
path: root/ScreenManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'ScreenManager.h')
-rw-r--r--ScreenManager.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/ScreenManager.h b/ScreenManager.h
index 97e849f3..7dda4fca 100644
--- a/ScreenManager.h
+++ b/ScreenManager.h
@@ -16,17 +16,11 @@ in the source distribution for its full text.
#include "Vector.h"
-typedef enum Orientation_ {
- VERTICAL,
- HORIZONTAL
-} Orientation;
-
typedef struct ScreenManager_ {
int x1;
int y1;
int x2;
int y2;
- Orientation orientation;
Vector* panels;
int panelCount;
Header* header;
@@ -36,7 +30,7 @@ typedef struct ScreenManager_ {
bool allowFocusChange;
} ScreenManager;
-ScreenManager* ScreenManager_new(int x1, int y1, int x2, int y2, Orientation orientation, Header* header, const Settings* settings, const State* state, bool owner);
+ScreenManager* ScreenManager_new(Header* header, const Settings* settings, const State* state, bool owner);
void ScreenManager_delete(ScreenManager* this);