mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 09:10:00 +01:00
13 lines
229 B
C++
13 lines
229 B
C++
#pragma once
|
|
|
|
#include <QTableWidgetItem>
|
|
|
|
class custom_table_widget_item : public QTableWidgetItem
|
|
{
|
|
public:
|
|
bool operator <(const QTableWidgetItem &other) const
|
|
{
|
|
return data(Qt::UserRole) < other.data(Qt::UserRole);
|
|
}
|
|
};
|