From 20b121c57d7789551feea878c80b0df4b3bbfef3 Mon Sep 17 00:00:00 2001 From: Scott Kyle Date: Tue, 24 May 2016 10:42:17 -0700 Subject: [PATCH] Add FIXME referencing core issue --- src/results.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/results.cpp b/src/results.cpp index cca9acf1..362a2d95 100644 --- a/src/results.cpp +++ b/src/results.cpp @@ -173,7 +173,7 @@ RowExpr Results::get(size_t row_ndx) update_tableview(); if (row_ndx >= m_table_view.size()) break; - // If clear() was called on the underlying Table, then is_row_attached(row_ndx) will still return true. + // FIXME: If clear() was called on the underlying Table, then is_row_attached(row_ndx) will still return true (core issue #1837). if (!m_live && (m_table_view.get_parent().is_empty() || !m_table_view.is_row_attached(row_ndx))) return {}; return m_table_view.get(row_ndx);