rpcs3/rpcs3/rpcs3qt/movie_item.cpp
Megamouse f115032095 Qt: implement flow layout game grid
This will allow us to properly style the grid and also remove the need to refresh the whole grid on a window resize
2023-05-06 06:31:58 +02:00

14 lines
357 B
C++

#include "stdafx.h"
#include "movie_item.h"
movie_item::movie_item() : QTableWidgetItem(), movie_item_base()
{
}
movie_item::movie_item(const QString& text, int type) : QTableWidgetItem(text, type), movie_item_base()
{
}
movie_item::movie_item(const QIcon& icon, const QString& text, int type) : QTableWidgetItem(icon, text, type), movie_item_base()
{
}