From 3379430e15a59a96562e8cdebe7cbf81efc1b3d3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 15 Dec 2010 02:06:56 +0000 Subject: Clean up code. git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2692 a436a847-0d15-0410-975c-d299462d15a1 --- src/ProjectList.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/ProjectList.cpp') diff --git a/src/ProjectList.cpp b/src/ProjectList.cpp index c7dbb89..155a878 100644 --- a/src/ProjectList.cpp +++ b/src/ProjectList.cpp @@ -19,13 +19,13 @@ #include #include -#include "ProjectList.hpp" -#include "Widget.hpp" -#include "Session.hpp" -#include "Project.hpp" -#include "ProjectPropertiesDialog.hpp" #include "LashClient.hpp" #include "LashProxy.hpp" +#include "Project.hpp" +#include "ProjectList.hpp" +#include "ProjectPropertiesDialog.hpp" +#include "Session.hpp" +#include "Widget.hpp" using boost::shared_ptr; using namespace std; @@ -36,12 +36,6 @@ struct ProjectList_column_record : public Gtk::TreeModel::ColumnRecord { }; struct ProjectListImpl : public sigc::trackable { - Patchage* _app; - Widget _widget; - ProjectList_column_record _columns; - Glib::RefPtr _model; - Gtk::Menu _menu_popup; - ProjectListImpl( Glib::RefPtr xml, Patchage* app); @@ -60,6 +54,12 @@ struct ProjectListImpl : public sigc::trackable { void on_menu_popup_close_project(shared_ptr project); void on_menu_popup_project_properties(shared_ptr project); void on_menu_popup_close_all_projects(); + + Patchage* _app; + Widget _widget; + ProjectList_column_record _columns; + Glib::RefPtr _model; + Gtk::Menu _menu_popup; }; ProjectList::ProjectList( -- cgit v1.2.1