mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Use glib to open our 'announcements' file, rather than opening directly with ofstream
(on Windows, std::ofstream doesn't support UTF8)
This commit is contained in:
parent
d11b15fbca
commit
d0fdcf2848
2 changed files with 28 additions and 12 deletions
|
|
@ -808,13 +808,20 @@ ARDOUR_UI::check_announcements ()
|
|||
_annc_filename.append (VERSIONSTRING);
|
||||
|
||||
std::string path = Glib::build_filename (user_config_directory(), _annc_filename);
|
||||
std::ifstream announce_file (path.c_str());
|
||||
if ( announce_file.fail() )
|
||||
_announce_string = "";
|
||||
else {
|
||||
std::stringstream oss;
|
||||
oss << announce_file.rdbuf();
|
||||
_announce_string = oss.str();
|
||||
FILE* fin = g_fopen (path.c_str(), "rb");
|
||||
|
||||
if (fin) {
|
||||
std::ifstream announce_file (fin);
|
||||
|
||||
if ( announce_file.fail() )
|
||||
_announce_string = "";
|
||||
else {
|
||||
std::stringstream oss;
|
||||
oss << announce_file.rdbuf();
|
||||
_announce_string = oss.str();
|
||||
}
|
||||
|
||||
fclose (fin);
|
||||
}
|
||||
|
||||
pingback (VERSIONSTRING, path);
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@
|
|||
|
||||
#include <curl/curl.h>
|
||||
|
||||
#include <glib/gstdio.h>
|
||||
#include <glibmm/miscutils.h>
|
||||
|
||||
#include "pbd/compose.h"
|
||||
|
|
@ -221,11 +222,19 @@ _pingback (void *arg)
|
|||
|
||||
//write announcements to local file, even if the
|
||||
//announcement is empty
|
||||
|
||||
std::ofstream annc_file (cm->announce_path.c_str());
|
||||
|
||||
if (annc_file) {
|
||||
annc_file << return_str;
|
||||
|
||||
FILE* fout = g_fopen (cm->announce_path.c_str(), "wb");
|
||||
|
||||
if (fout) {
|
||||
{
|
||||
std::ofstream annc_file (fout);
|
||||
|
||||
if (annc_file) {
|
||||
annc_file << return_str;
|
||||
}
|
||||
}
|
||||
|
||||
fclose (fout);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue