enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / gtk2_ardour / nag.cc
index 0dca9f84a1d8a14d0f8bb253b393c75cc7f73672..d553efd1979220bf97629d596ad98e4a75ddaca5 100644 (file)
@@ -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