Pointer cleanup (#242)

- Made greater use of smart pointers, eliminating many instances of manual memory management
- Do not use pointers at all for many non-polymorphic classes
- Assorted other code cleanup
This commit is contained in:
Jaye Evins
2025-10-31 16:11:28 -04:00
committed by GitHub
parent fd10d88be5
commit 8c8e447336
159 changed files with 3364 additions and 4045 deletions
+9 -5
View File
@@ -30,18 +30,22 @@ namespace glabels
///
/// Copy constructor
///
Variables::Variables( const Variables* variables )
: QMap<QString,Variable>(*variables)
Variables::Variables( const Variables& other )
: QMap<QString,Variable>(other)
{
}
///
/// Clone
/// Copy contents from other
///
Variables* Variables::clone() const
void Variables::copy( const Variables& other )
{
return new Variables( this );
clear();
for ( const auto& v : other )
{
insert( v.name(), v );
}
}