diff options
Diffstat (limited to 'Applications/Spreadsheet/Spreadsheet.h')
-rw-r--r-- | Applications/Spreadsheet/Spreadsheet.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/Applications/Spreadsheet/Spreadsheet.h b/Applications/Spreadsheet/Spreadsheet.h index 3207398ec8..8d8ad29acc 100644 --- a/Applications/Spreadsheet/Spreadsheet.h +++ b/Applications/Spreadsheet/Spreadsheet.h @@ -41,21 +41,6 @@ namespace Spreadsheet { -struct Position { - String column; - size_t row { 0 }; - - bool operator==(const Position& other) const - { - return row == other.row && column == other.column; - } - - bool operator!=(const Position& other) const - { - return !(other == *this); - } -}; - class Sheet : public Core::Object { C_OBJECT(Sheet); @@ -89,7 +74,7 @@ public: if (auto cell = at(position)) return *cell; - m_cells.set(position, make<Cell>(String::empty(), make_weak_ptr())); + m_cells.set(position, make<Cell>(String::empty(), position, make_weak_ptr())); return *at(position); } |