Merge pull request #1 from mox-mox/dev
Fix build, add missing brace in readme
This commit is contained in:
@@ -23,7 +23,7 @@ Then just type this in your `CMakeLists.txt`:
|
|||||||
add_subdirectory(i3ipc++)
|
add_subdirectory(i3ipc++)
|
||||||
|
|
||||||
include_directories(${I3IPCpp_INCLUDE_DIRS})
|
include_directories(${I3IPCpp_INCLUDE_DIRS})
|
||||||
link_directories(${I3IPCpp_LIBRARY_DIRS)
|
link_directories(${I3IPCpp_LIBRARY_DIRS})
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -242,8 +242,8 @@ std::vector<output_t> I3Connection::get_outputs() const {
|
|||||||
outputs.push_back({
|
outputs.push_back({
|
||||||
.name = name.asString(),
|
.name = name.asString(),
|
||||||
.active = active.asBool(),
|
.active = active.asBool(),
|
||||||
.rect = parse_rect_from_json(rect),
|
|
||||||
.current_workspace = (current_workspace.isNull() ? std::string() : current_workspace.asString()),
|
.current_workspace = (current_workspace.isNull() ? std::string() : current_workspace.asString()),
|
||||||
|
.rect = parse_rect_from_json(rect),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user