Fix playhead smoothing when auditioning.
[ardour.git] / gtk2_ardour / nag.cc
index 4502c3c8a2289f25df0a0120187ea2e6017f4ca6..d2b08349b111bcdb9e6e39d2a1b3175a21966eca 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Paul Davis 
+    Copyright (C) 2012 Paul 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
@@ -21,7 +21,7 @@
 #include "gtk2ardour-config.h"
 #endif
 
-#include <fstream>
+#include "pbd/gstdio_compat.h"
 #include <gtkmm/stock.h>
 
 #include "pbd/openuri.h"
@@ -30,7 +30,7 @@
 #include "ardour/rc_configuration.h"
 
 #include "nag.h"
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace ARDOUR;
 using namespace std;
@@ -136,7 +136,7 @@ NagScreen::mark_never_again ()
 
        path = Glib::build_filename (user_config_directory(), ".nevernag");
 
-       ofstream nagfile (path.c_str());
+       g_file_set_contents (path.c_str(), "", -1, NULL);
 }
 
 void
@@ -146,7 +146,7 @@ NagScreen::mark_subscriber ()
 
        path = Glib::build_filename (user_config_directory(), ".askedaboutsub");
 
-       ofstream subsfile (path.c_str());
+       g_file_set_contents (path.c_str(), "", -1, NULL);
 }
 
 void
@@ -156,7 +156,7 @@ NagScreen::mark_affirmed_subscriber ()
 
        path = Glib::build_filename (user_config_directory(), ".isubscribe");
 
-       ofstream subsfile (path.c_str());
+       g_file_set_contents (path.c_str(), "", -1, NULL);
 }
 
 bool
@@ -195,7 +195,7 @@ NagScreen::offer_to_donate ()
 {
        /* we don't care if it fails */
 
-        PBD::open_uri (Config->get_donate_url());
+       PBD::open_uri (Config->get_donate_url());
 }
 
 void