1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/games/pentobi/files/patch-src_pentobi_RatingDialog.cpp
Tobias C. Berner c45de9579f Qt5 update to 5.13.0
For new features, check: https://wiki.qt.io/New_Features_in_Qt_5.13

Thanks to adridg who helped to fix a lot of packages.

Exp-run by:	antoine
PR:		238782
2019-10-01 04:13:31 +00:00

17 lines
785 B
C++

--- src/pentobi/RatingDialog.cpp.orig 2019-09-01 15:41:49 UTC
+++ src/pentobi/RatingDialog.cpp
@@ -56,11 +56,11 @@ RatingDialog::RatingDialog(QWidget* parent, RatingHist
formLayout->addRow(tr("Rated games:"), m_labelNuGames);
m_labelBestRating = createSelectableLabel();
formLayout->addRow(tr("Best previous rating:"), m_labelBestRating);
- layout->addSpacing(layout->margin());
+ layout->addSpacing(layout->spacing());
layout->addWidget(new QLabel(tr("Recent development:")));
m_graph = new RatingGraph;
layout->addWidget(m_graph, 1);
- layout->addSpacing(layout->margin());
+ layout->addSpacing(layout->spacing());
layout->addWidget(new QLabel(tr("Recent games:")));
m_list = new RatedGamesList;
layout->addWidget(m_list, 1);