aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2015-08-19 01:06:15 -0700
committerFurkan Sahin <furkan-dev@proton.me>2015-08-19 01:06:15 -0700
commita9de6d493bf0e76a595a590a5445ca4701fc2479 (patch)
tree5d580fed19fa2aa25014fe234edc6db14cfaa652 /include
parentc40928ed5c332c7a08297db88b04e9c71892091b (diff)
fixed some more bugs, moved layout_log into log.ch, restored focus_parent
Diffstat (limited to 'include')
-rw-r--r--include/log.h2
-rw-r--r--include/workspace.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/include/log.h b/include/log.h
index 44f84940..7aea2ded 100644
--- a/include/log.h
+++ b/include/log.h
@@ -1,6 +1,7 @@
#ifndef _SWAY_LOG_H
#define _SWAY_LOG_H
#include <stdbool.h>
+#include "container.h"
typedef enum {
L_SILENT = 0,
@@ -15,4 +16,5 @@ void sway_log(int verbosity, const char* format, ...) __attribute__((format(prin
void sway_abort(const char* format, ...) __attribute__((format(printf,1,2)));
bool sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3)));
+void layout_log(const swayc_t *c, int depth);
#endif
diff --git a/include/workspace.h b/include/workspace.h
index 8ce39bbd..042a15d9 100644
--- a/include/workspace.h
+++ b/include/workspace.h
@@ -15,6 +15,5 @@ void workspace_output_next();
void workspace_next();
void workspace_output_prev();
void workspace_prev();
-void layout_log(const swayc_t *c, int depth);
#endif