##// END OF EJS Templates
Fix window flags of the catalogue gui
trabillard -
r1135:440c633db691
parent child
Show More
@@ -1,13 +1,14
1 1 #include "Catalogue/CatalogueExplorer.h"
2 2 #include "ui_CatalogueExplorer.h"
3 3
4 4 CatalogueExplorer::CatalogueExplorer(QWidget *parent)
5 : QDialog(parent), ui(new Ui::CatalogueExplorer)
5 : QDialog(parent, Qt::Dialog | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint),
6 ui(new Ui::CatalogueExplorer)
6 7 {
7 8 ui->setupUi(this);
8 9 }
9 10
10 11 CatalogueExplorer::~CatalogueExplorer()
11 12 {
12 13 delete ui;
13 14 }
General Comments 3
Under Review
author

Auto status change to "Under Review"

Approved

Status change > Approved

You need to be logged in to leave comments. Login now