From 243ae3218724e76140de6e5211b252cc34f7868b Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 26 Jan 2016 12:09:07 -0800 Subject: [PATCH] Fix incorrect error message --- src/list.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.cpp b/src/list.cpp index 0c78942e..cbcf0317 100644 --- a/src/list.cpp +++ b/src/list.cpp @@ -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"); } }