--- gigedit/trunk/src/gigedit/mainwindow.h 2016/05/18 10:10:25 2918 +++ gigedit/trunk/src/gigedit/mainwindow.h 2017/01/02 22:13:01 3068 @@ -1,5 +1,5 @@ /* -*- c++ -*- - * Copyright (C) 2006 - 2016 Andreas Persson + * Copyright (C) 2006 - 2017 Andreas Persson * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -20,7 +20,11 @@ #ifndef GIGEDIT_MAINWINDOW_H #define GIGEDIT_MAINWINDOW_H -#include +#ifdef LIBGIG_HEADER_FILE +# include LIBGIG_HEADER_FILE(gig.h) +#else +# include +#endif #include #include @@ -276,10 +280,12 @@ class ModelColumns : public Gtk::TreeModel::ColumnRecord { public: ModelColumns() { + add(m_col_nr); add(m_col_name); add(m_col_instr); } + Gtk::TreeModelColumn m_col_nr; Gtk::TreeModelColumn m_col_name; Gtk::TreeModelColumn m_col_instr; } m_Columns; @@ -384,6 +390,7 @@ void show_script_slots(); void on_action_view_status_bar(); void on_auto_restore_win_dim(); + void on_save_with_temporary_file(); void on_action_refresh_all(); void on_action_warn_user_on_extensions(); void on_action_sync_sampler_instrument_selection();