Formatting fixes

This commit is contained in:
Maxime Coste 2017-07-07 13:59:53 +09:00
parent 6604aa66f7
commit b51d19bfaa
3 changed files with 2 additions and 3 deletions

View File

@ -215,8 +215,8 @@ public:
// Methods called by the buffer manager
void on_registered();
void on_unregistered();
private:
private:
void on_option_changed(const Option& option) override;
BufferCoord do_insert(BufferCoord pos, StringView content);

View File

@ -47,8 +47,8 @@ public:
void close_fd();
void disable() { m_fd = -1; }
private:
private:
int m_fd;
FdEvents m_events;
Callback m_callback;

View File

@ -135,7 +135,6 @@ struct MouseHandler
}
private:
bool m_dragging = false;
BufferCoord m_anchor;
};