mirror of
				https://git.h3cjp.net/H3cJP/citra.git
				synced 2025-10-31 15:04:53 +00:00 
			
		
		
		
	game_list_p: Resolve deprecated usage of QVariant operator<
This is designated as obsolete in Qt's docs (see: https://doc.qt.io/qt-5/qvariant-obsolete.html#operator-lt)
This commit is contained in:
		
							parent
							
								
									3f13e1cc24
								
							
						
					
					
						commit
						fdf0825369
					
				|  | @ -274,7 +274,8 @@ public: | |||
|     } | ||||
| 
 | ||||
|     bool operator<(const QStandardItem& other) const override { | ||||
|         return data(CompatNumberRole) < other.data(CompatNumberRole); | ||||
|         return data(CompatNumberRole).value<QString>() < | ||||
|                other.data(CompatNumberRole).value<QString>(); | ||||
|     } | ||||
| }; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue