Clean up merge

This commit is contained in:
Lawrence Lee
2022-12-03 17:49:26 -08:00
parent 9fcf45dca5
commit 4223f114cb
9 changed files with 43 additions and 44 deletions

View File

@@ -26,7 +26,6 @@
#include "imagedata.h"
#include "imagesource.h"
#include "procparams.h"
#include "rt_math.h"
#include "utils.h"
@@ -35,6 +34,20 @@
using namespace rtengine;
namespace
{
const std::string& validateUft8(const std::string& str, const std::string& on_error = "???")
{
if (Glib::ustring(str).validate()) {
return str;
}
return on_error;
}
}
namespace rtengine {
extern const Settings *settings;
@@ -59,15 +72,6 @@ Exiv2::Image::AutoPtr open_exiv2(const Glib::ustring& fname)
} // namespace rtengine
const std::string& validateUft8(const std::string& str, const std::string& on_error = "???")
{
if (Glib::ustring(str).validate()) {
return str;
}
return on_error;
}
FramesMetaData* FramesMetaData::fromFile(const Glib::ustring& fname)
{
return new FramesData(fname);
@@ -644,7 +648,7 @@ std::string FramesMetaData::expcompToString(double expcomp, bool maskZeroexpcomp
double FramesMetaData::shutterFromString(std::string s)
{
const std::string::size_type i = s.find_first_of ('/');
const std::string::size_type i = s.find_first_of('/');
if (i == std::string::npos) {
return std::atof(s.c_str());