[libcalamares] Remove debugging cruft

main
Adriaan de Groot
parent daa76080f1
commit 4945408911

@ -234,12 +234,6 @@ TZZone::tr() const
return QObject::tr( m_human, "tz_names" ); 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 ) CStringListModel::CStringListModel( CStringPairList l )
: m_list( l ) : m_list( l )

@ -128,21 +128,12 @@ public:
double latitude() const { return m_latitude; } double latitude() const { return m_latitude; }
double longitude() const { return m_longitude; } double longitude() const { return m_longitude; }
void print( QDebug& ) const;
protected: protected:
QString m_region; QString m_region;
QString m_country; QString m_country;
double m_latitude = 0.0, m_longitude = 0.0; 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 class CStringListModel : public QAbstractListModel
{ {
public: public:

Loading…
Cancel
Save