diff options
Diffstat (limited to 'nxcomp')
-rw-r--r-- | nxcomp/src/GenericReply.h | 1 | ||||
-rw-r--r-- | nxcomp/src/Timestamp.cpp | 1 | ||||
-rw-r--r-- | nxcomp/src/TranslateCoords.h | 8 |
3 files changed, 4 insertions, 6 deletions
diff --git a/nxcomp/src/GenericReply.h b/nxcomp/src/GenericReply.h index e899b8467..2b352357f 100644 --- a/nxcomp/src/GenericReply.h +++ b/nxcomp/src/GenericReply.h @@ -83,7 +83,6 @@ class GenericReplyMessage : public Message private: unsigned char byte_data; - unsigned int int_data[6]; unsigned short short_data[12]; }; diff --git a/nxcomp/src/Timestamp.cpp b/nxcomp/src/Timestamp.cpp index 4a9dd3347..273f2823b 100644 --- a/nxcomp/src/Timestamp.cpp +++ b/nxcomp/src/Timestamp.cpp @@ -49,7 +49,6 @@ std::string strTimestamp(const T_timestamp &ts) std::string ret; char ctime_now[26] = { }; - bool err = true; #if HAVE_CTIME_S errno_t retval = ::ctime_s(ctime_now, sizeof(ctime_now), static_cast<const time_t*>(&ts.tv_sec)); diff --git a/nxcomp/src/TranslateCoords.h b/nxcomp/src/TranslateCoords.h index 997d079e1..fd9b1590b 100644 --- a/nxcomp/src/TranslateCoords.h +++ b/nxcomp/src/TranslateCoords.h @@ -84,10 +84,10 @@ class TranslateCoordsMessage : public Message unsigned int src_x; unsigned int src_y; - unsigned char r_same_screen; - unsigned int r_child_window; - unsigned int r_dst_x; - unsigned int r_dst_y; + // unsigned char r_same_screen; + // unsigned int r_child_window; + // unsigned int r_dst_x; + // unsigned int r_dst_y; }; class TranslateCoordsStore : public MessageStore |