Skip to content

Commit

Permalink
Fix a few compile warnings-turned-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gjanssens committed Dec 29, 2017
1 parent 3f44552 commit 6774f12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gnucash/import-export/csv-imp/assistant-csv-price-import.cpp
Expand Up @@ -335,12 +335,12 @@ static void csv_price_imp_preview_commodity_sel_cb (GtkComboBox* commodity_selec
info->preview_update_commodity();
}

void csv_price_imp_preview_col_type_changed_cb (GtkComboBox* cbox, CsvImpPriceAssist* info)
static void csv_price_imp_preview_col_type_changed_cb (GtkComboBox* cbox, CsvImpPriceAssist* info)
{
info->preview_update_col_type (cbox);
}

gboolean
static gboolean
csv_price_imp_preview_treeview_clicked_cb (GtkTreeView* treeview, GdkEventButton* event,
CsvImpPriceAssist* info)
{
Expand Down Expand Up @@ -1117,7 +1117,7 @@ CsvImpPriceAssist::preview_update_commodity ()
preview_refresh_table ();
}

gboolean
static gboolean
csv_imp_preview_queue_rebuild_table (CsvImpPriceAssist *assist)
{
assist->preview_refresh_table ();
Expand Down Expand Up @@ -1518,7 +1518,7 @@ CsvImpPriceAssist::preview_style_column (uint32_t col_num, GtkTreeModel* model)

/* Helper to create a shared store for the header comboboxes in the preview treeview.
* It holds the possible column types */
GtkTreeModel*
static GtkTreeModel*
make_column_header_model_price (void)
{
auto combostore = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_INT);
Expand Down

0 comments on commit 6774f12

Please sign in to comment.