25 lines
790 B
C++
25 lines
790 B
C++
#include "gui/formcategorydetails.h"
|
|
|
|
#include "gui/iconthemefactory.h"
|
|
#include "gui/feedsview.h"
|
|
|
|
|
|
FormCategoryDetails::FormCategoryDetails(FeedsView *parent)
|
|
: QDialog(parent) {
|
|
// Set flags and attributes.
|
|
setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog);
|
|
setWindowIcon(IconThemeFactory::getInstance()->fromTheme("document-new"));
|
|
}
|
|
|
|
FormCategoryDetails::FormCategoryDetails(FeedsModelCategory *category,
|
|
FeedsView *parent)
|
|
:QDialog(parent) {
|
|
// Set flags and attributes.
|
|
setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog);
|
|
setWindowIcon(IconThemeFactory::getInstance()->fromTheme("document-new"));
|
|
|
|
}
|
|
|
|
FormCategoryDetails::~FormCategoryDetails() {
|
|
qDebug("Destroying FormCategoryDetails instance.");
|
|
}
|