[stock-txn-asst] Remove unused method.

This commit is contained in:
John Ralls 2023-09-05 14:08:09 -07:00
parent c03b57b8fb
commit 83ecabebce

View File

@ -2225,7 +2225,6 @@ class GncFinishTreeview
GtkWidget *m_treeview;
public:
GncFinishTreeview(GtkBuilder *builder);
void set_tooltip_column(int);
/** Extract the information from the StockTransactionEntries in
* the vector created by the model's `make_list_of_splits`
* function and write it into the list view.
@ -2285,13 +2284,6 @@ GncFinishTreeview::GncFinishTreeview (GtkBuilder *builder) :
gtk_tree_view_set_tooltip_column(GTK_TREE_VIEW(m_treeview),
SPLIT_COL_TOOLTIP);}
void
GncFinishTreeview::set_tooltip_column(int column)
{
gtk_tree_view_set_tooltip_column (GTK_TREE_VIEW (m_treeview),
column);
}
void
GncFinishTreeview::load(const EntryVec& list_of_splits)
{