Merge branch 'master' into gtk3

This commit is contained in:
Morgan Hardwood
2016-10-16 23:38:04 +02:00
34 changed files with 156 additions and 1021 deletions

View File

@@ -36,16 +36,18 @@ extern const Settings* settings;
inline dfInfo& dfInfo::operator =(const dfInfo &o)
{
pathname = o.pathname;
maker = o.maker;
model = o.model;
iso = o.iso;
shutter = o.shutter;
timestamp = o.timestamp;
if (this != &o) {
pathname = o.pathname;
maker = o.maker;
model = o.model;
iso = o.iso;
shutter = o.shutter;
timestamp = o.timestamp;
if( ri ) {
delete ri;
ri = NULL;
if( ri ) {
delete ri;
ri = NULL;
}
}
return *this;