Fix incorrect error message

This commit is contained in:
Thomas Goyne 2016-01-26 12:09:07 -08:00
parent 0819f72b1b
commit 243ae32187
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ void List::verify_valid_row(size_t row_ndx, bool insertion)
void List::verify_attached()
{
if (!m_link_view->is_attached()) {
throw std::runtime_error("Tableview is not attached");
throw std::runtime_error("LinkView is not attached");
}
}