summaryrefslogtreecommitdiffstats
path: root/src/Patchage.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-12-29 20:02:36 -0500
committerDavid Robillard <d@drobilla.net>2019-12-29 20:02:36 -0500
commit762cfaa66a7be2fe61722d1d2a1679af65bd1f9a (patch)
tree7d60aeef03703f305ed672ed2ce44395a38f1bf3 /src/Patchage.cpp
parent7bbcd8405b0e9d04c74be1f13d1b54f3f72e7c7d (diff)
downloadpatchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.gz
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.tar.bz2
patchage-762cfaa66a7be2fe61722d1d2a1679af65bd1f9a.zip
Clean up includes
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r--src/Patchage.cpp46
1 files changed, 22 insertions, 24 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index 7875bb9..eec9ac4 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -14,32 +14,10 @@
* along with Patchage. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stdlib.h>
-#include <pthread.h>
-
-#include <cmath>
-#include <fstream>
-
-#include <glib.h>
-#include <glib/gstdio.h>
-#include <gtk/gtkwindow.h>
-
-#include <boost/format.hpp>
-
-#include <gtkmm/button.h>
-#include <gtkmm/filechooserdialog.h>
-#include <gtkmm/liststore.h>
-#include <gtkmm/menuitem.h>
-#include <gtkmm/messagedialog.h>
-#include <gtkmm/stock.h>
-#include <gtkmm/treemodel.h>
-
-#include "ganv/Module.hpp"
-#include "ganv/Edge.hpp"
+#include "Patchage.hpp"
#include "Configuration.hpp"
#include "Legend.hpp"
-#include "Patchage.hpp"
#include "PatchageCanvas.hpp"
#include "PatchageEvent.hpp"
#include "UIFile.hpp"
@@ -60,8 +38,28 @@
#include "AlsaDriver.hpp"
#endif
+#include "ganv/Module.hpp"
+#include "ganv/Edge.hpp"
+
+#include <boost/format.hpp>
+#include <glib.h>
+#include <glib/gstdio.h>
+#include <gtk/gtkwindow.h>
+#include <gtkmm/button.h>
+#include <gtkmm/filechooserdialog.h>
+#include <gtkmm/liststore.h>
+#include <gtkmm/menuitem.h>
+#include <gtkmm/messagedialog.h>
+#include <gtkmm/stock.h>
+#include <gtkmm/treemodel.h>
+
+#include <cstdlib>
+#include <cmath>
+#include <fstream>
+
#ifdef PATCHAGE_GTK_OSX
- #include <gtkosxapplication.h>
+
+#include <gtkosxapplication.h>
static gboolean
can_activate_cb(GtkWidget* widget, guint signal_id, gpointer data)