[libcalamares] Remove debugging cruft

This commit is contained in:
Adriaan de Groot 2019-12-11 07:01:15 -05:00
parent daa76080f1
commit 4945408911
2 changed files with 0 additions and 15 deletions

View File

@ -234,12 +234,6 @@ TZZone::tr() const
return QObject::tr( m_human, "tz_names" );
}
void
TZZone::print( QDebug& log ) const
{
log << key() << '(' << m_country << ' ' << m_latitude << ',' << m_longitude << ')';
}
CStringListModel::CStringListModel( CStringPairList l )
: m_list( l )

View File

@ -128,21 +128,12 @@ public:
double latitude() const { return m_latitude; }
double longitude() const { return m_longitude; }
void print( QDebug& ) const;
protected:
QString m_region;
QString m_country;
double m_latitude = 0.0, m_longitude = 0.0;
};
inline QDebug&
operator<<( QDebug& log, const TZZone& z )
{
z.print( log );
return log;
}
class CStringListModel : public QAbstractListModel
{
public: