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