1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:28:11 +00:00

GTreeView: A bunch of work on the tree view.

This commit is contained in:
Andreas Kling 2019-03-29 14:46:53 +01:00
parent d02238af48
commit 474340b9cd
5 changed files with 215 additions and 9 deletions

View file

@ -13,6 +13,8 @@ public:
void* internal_data() const { return m_internal_data; }
GModelIndex parent() const;
bool operator==(const GModelIndex& other) const { return m_row == other.m_row && m_column == other.m_column; }
private: