Removing remaining modification from CMakefileLists.txt,

fixing error message for unknown border style:
	"W: Got a unknown "border" property: "pixel". Perhaps its neccessary to update i3ipc++. If you are using latest, note maintainer about this"
caused by setting "new window pixel 1" in the i3config."
This commit is contained in:
mox
2016-06-11 17:23:11 +02:00
parent 029d22a8cd
commit 99c7bd76ac
3 changed files with 5 additions and 20 deletions

View File

@@ -5,12 +5,6 @@
#include <memory>
#include <vector>
#include "i3ipc++_config.hpp"
#ifdef I3IPCpp_USE_FULL_SIGNALS
#include <json/json.h>
#endif
#include <sigc++/sigc++.h>
extern "C" {
@@ -85,7 +79,6 @@ enum EventType {
ET_BARCONFIG_UPDATE = (1 << 4), ///< Bar config update event @attention Yet is not implemented as signal in connection
};
#ifndef I3IPCpp_USE_FULL_SIGNALS
/**
* Types of workspace events
*/
@@ -118,6 +111,7 @@ enum class BorderStyle : char {
UNKNOWN = '?', //< If got an unknown border style in reply
NONE = 'N',
NORMAL = 'n',
PIXEL = 'P',
ONE_PIXEL = '1',
};
@@ -159,7 +153,6 @@ struct container_t {
std::list< std::shared_ptr<container_t> > nodes;
};
#endif
/**