Fix inconsistent session-check
[ardour.git] / gtk2_ardour / soundcloud_export_selector.cc
index 23b4995c43251da79976d36938a0c29d37ffdbfa..4a7b1849b1607d86a22b4b3d02088eb1095b79d1 100644 (file)
@@ -20,6 +20,8 @@
 
 
 *************************************************************************************/
+#include <gtkmm/frame.h>
+
 #include "ardour/debug.h"
 #include "ardour/soundcloud_upload.h"
 #include "soundcloud_export_selector.h"
@@ -30,9 +32,9 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <iostream>
-#include <pbd/gstdio_compat.h>
+#include "pbd/gstdio_compat.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace PBD;
 
@@ -89,7 +91,7 @@ SoundcloudExportSelector::SoundcloudExportSelector () :
 int
 SoundcloudExportSelector::do_progress_callback (double ultotal, double ulnow, const std::string &filename)
 {
-       DEBUG_TRACE (DEBUG::Soundcloud, string_compose ("SoundcloudExportSelector::do_progress_callback(%1, %2, %3)", ultotal, ulnow, filename));
+       DEBUG_TRACE (DEBUG::Soundcloud, string_compose ("SoundcloudExportSelector::do_progress_callback(%1, %2, %3)\n", ultotal, ulnow, filename));
        if (soundcloud_cancel) {
                progress_bar.set_fraction (0);
                // cancel_button.set_label ("");
@@ -110,4 +112,3 @@ SoundcloudExportSelector::do_progress_callback (double ultotal, double ulnow, co
 
        return 0;
 }
-