mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Fix a few warnings
- configure_input_player_widget.cpp: always better to use `const auto &` whenever possible - profiler.cpp: `ev->pos()` is deprecated, replace with `ev->position()`, which returns floats, thus the addition of `.toPoint()` (same as what's happening in `pos()`) - game_list.cpp: `QString::SplitBehavior` is deprecate, use `Qt::` namespace instead
This commit is contained in:
		@@ -1837,7 +1837,7 @@ void PlayerControlPreview::DrawLeftBody(QPainter& p, const QPointF center) {
 | 
				
			|||||||
    const float led_size = 5.0f;
 | 
					    const float led_size = 5.0f;
 | 
				
			||||||
    const QPointF led_position = sideview_center + QPointF(0, -36);
 | 
					    const QPointF led_position = sideview_center + QPointF(0, -36);
 | 
				
			||||||
    int led_count = 0;
 | 
					    int led_count = 0;
 | 
				
			||||||
    for (const auto color : led_color) {
 | 
					    for (const auto& color : led_color) {
 | 
				
			||||||
        p.setBrush(color);
 | 
					        p.setBrush(color);
 | 
				
			||||||
        DrawRectangle(p, led_position + QPointF(0, 12 * led_count++), led_size, led_size);
 | 
					        DrawRectangle(p, led_position + QPointF(0, 12 * led_count++), led_size, led_size);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -1933,7 +1933,7 @@ void PlayerControlPreview::DrawRightBody(QPainter& p, const QPointF center) {
 | 
				
			|||||||
    const float led_size = 5.0f;
 | 
					    const float led_size = 5.0f;
 | 
				
			||||||
    const QPointF led_position = sideview_center + QPointF(0, -36);
 | 
					    const QPointF led_position = sideview_center + QPointF(0, -36);
 | 
				
			||||||
    int led_count = 0;
 | 
					    int led_count = 0;
 | 
				
			||||||
    for (const auto color : led_color) {
 | 
					    for (const auto& color : led_color) {
 | 
				
			||||||
        p.setBrush(color);
 | 
					        p.setBrush(color);
 | 
				
			||||||
        DrawRectangle(p, led_position + QPointF(0, 12 * led_count++), led_size, led_size);
 | 
					        DrawRectangle(p, led_position + QPointF(0, 12 * led_count++), led_size, led_size);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -160,8 +160,8 @@ void MicroProfileWidget::mouseReleaseEvent(QMouseEvent* ev) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void MicroProfileWidget::wheelEvent(QWheelEvent* ev) {
 | 
					void MicroProfileWidget::wheelEvent(QWheelEvent* ev) {
 | 
				
			||||||
    MicroProfileMousePosition(ev->pos().x() / x_scale, ev->pos().y() / y_scale,
 | 
					    MicroProfileMousePosition(ev->position().toPoint().x() / x_scale,
 | 
				
			||||||
                              ev->angleDelta().y() / 120);
 | 
					                              ev->position().toPoint().y() / y_scale, ev->angleDelta().y() / 120);
 | 
				
			||||||
    ev->accept();
 | 
					    ev->accept();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -159,8 +159,7 @@ GameListSearchField::GameListSearchField(GameList* parent) : QWidget{parent} {
 | 
				
			|||||||
 * @return true if the haystack contains all words of userinput
 | 
					 * @return true if the haystack contains all words of userinput
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
 | 
					static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
 | 
				
			||||||
    const QStringList userinput_split =
 | 
					    const QStringList userinput_split = userinput.split(QLatin1Char{' '}, Qt::SkipEmptyParts);
 | 
				
			||||||
        userinput.split(QLatin1Char{' '}, QString::SplitBehavior::SkipEmptyParts);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return std::all_of(userinput_split.begin(), userinput_split.end(),
 | 
					    return std::all_of(userinput_split.begin(), userinput_split.end(),
 | 
				
			||||||
                       [&haystack](const QString& s) { return haystack.contains(s); });
 | 
					                       [&haystack](const QString& s) { return haystack.contains(s); });
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user