mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 10:25:36 -04:00
Const correctness.
This commit is contained in:
parent
71851ed274
commit
92eae47a1d
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ LocaleGlobal::Location::pretty( const QString& s )
|
||||||
|
|
||||||
|
|
||||||
QString
|
QString
|
||||||
LocaleGlobal::Location::comment()
|
LocaleGlobal::Location::comment() const
|
||||||
{
|
{
|
||||||
QTimeZone qtz = QTimeZone( QString( "%1/%2" )
|
QTimeZone qtz = QTimeZone( QString( "%1/%2" )
|
||||||
.arg( region )
|
.arg( region )
|
||||||
|
|
|
@ -46,7 +46,7 @@ public:
|
||||||
QString region, zone;
|
QString region, zone;
|
||||||
double latitude, longitude;
|
double latitude, longitude;
|
||||||
static QString pretty( const QString& s );
|
static QString pretty( const QString& s );
|
||||||
QString comment();
|
QString comment() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void init();
|
static void init();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue