mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
This will allow us to properly style the grid and also remove the need to refresh the whole grid on a window resize
15 lines
357 B
C++
15 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()
|
|
{
|
|
}
|