mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 22:36:39 +02:00
Update UserLocationsWindow derive from QDialog
This commit is contained in:
parent
bfde24fe12
commit
50b13c99a7
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
#include "UserLocationsWindow.h"
|
#include "UserLocationsWindow.h"
|
||||||
|
|
||||||
UserLocationsWindow::UserLocationsWindow(QWidget* parent) :
|
UserLocationsWindow::UserLocationsWindow(QWidget* parent) :
|
||||||
QWidget(parent, Qt::Window),
|
QDialog(parent),
|
||||||
_ui(),
|
_ui(),
|
||||||
_proxyModel(this),
|
_proxyModel(this),
|
||||||
_userLocationsModel(this) {
|
_userLocationsModel(this) {
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
#include "ui_userLocationsWindow.h"
|
#include "ui_userLocationsWindow.h"
|
||||||
#include "UserLocationsModel.h"
|
#include "UserLocationsModel.h"
|
||||||
|
|
||||||
class UserLocationsWindow : public QWidget {
|
class UserLocationsWindow : public QDialog {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
UserLocationsWindow(QWidget* parent = NULL);
|
UserLocationsWindow(QWidget* parent = NULL);
|
||||||
|
|
Loading…
Reference in a new issue