fix a compile of annoying compiler warnings with elcap clang
[ardour.git] / libs / gtkmm2ext / selector.cc
index 85924e82ab728f842d0b67f218d698e00fbf6a91..04fbd13001ea98672daa0d7f8e221dd730b3b14a 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 1999 Paul Barton-Davis 
+    Copyright (C) 1999 Paul Barton-Davis
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
@@ -22,7 +22,8 @@
 #include <vector>
 #include <string>
 
-#include "pbd/pathscanner.h"
+#include <glibmm.h>
+#include <gdkmm.h>
 
 #include "gtkmm2ext/keyboard.h"
 #include "gtkmm2ext/selector.h"
@@ -156,7 +157,7 @@ Selector::chosen ()
 {
        Glib::RefPtr<Gtk::TreeSelection> tree_sel = tview.get_selection();
        Gtk::TreeModel::iterator iter = tree_sel->get_selected();
-       
+
        if (iter) {
                choice_made (new Result (tview, tree_sel));
        } else {