mirror of
https://github.com/clementine-player/Clementine
synced 2025-02-03 12:47:31 +01:00
gstenginepipeline: Do not use QString::sprintf()
This commit is contained in:
parent
e3bea84bea
commit
22c0a79924
@ -153,9 +153,7 @@ void PlaybackSettingsPage::RgPreampChanged(int value) {
|
||||
}
|
||||
|
||||
void PlaybackSettingsPage::BufferMinFillChanged(int value) {
|
||||
QString percent;
|
||||
percent.sprintf("%d%%", value);
|
||||
ui_->buffer_min_fill_value_label->setText(percent);
|
||||
ui_->buffer_min_fill_value_label->setText(QString::number(value) + "%");
|
||||
}
|
||||
|
||||
void PlaybackSettingsPage::FadingOptionsChanged() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user