[partition] Reduce Transifex warnings

- the string here has no context (no QObject-derived class that
   it is called in) so use the static method instead.
This commit is contained in:
Adriaan de Groot 2019-02-14 16:08:55 -05:00
parent 302b3cf0c4
commit 6fbc467795

View File

@ -44,7 +44,7 @@ void
standardMountPoints(QComboBox& combo)
{
combo.clear();
combo.addItem( combo.tr( "(no mount point)" ) );
combo.addItem( QObject::tr( "(no mount point)" ) );
combo.addItems( standardMountPoints() );
}