Finish renaming ObjectPropertiesFrame
This commit is contained in:
parent
6102181738
commit
d93d7c26fe
4 changed files with 10 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>ObjectPropertiesFrame</class>
|
||||
<widget class="QFrame" name="ObjectPropertiesFrame">
|
||||
<class>EventPropertiesFrame</class>
|
||||
<widget class="QFrame" name="EventPropertiesFrame">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include "project.h"
|
||||
#include "editor.h"
|
||||
#include "eventpropertiesframe.h"
|
||||
#include "ui_objectpropertiesframe.h"
|
||||
#include "ui_eventpropertiesframe.h"
|
||||
#include "bordermetatilespixmapitem.h"
|
||||
#include "currentselectedmetatilespixmapitem.h"
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#include "eventpropertiesframe.h"
|
||||
#include "ui_objectpropertiesframe.h"
|
||||
#include "ui_eventpropertiesframe.h"
|
||||
|
||||
EventPropertiesFrame::EventPropertiesFrame(QWidget *parent) :
|
||||
QFrame(parent),
|
||||
ui(new Ui::ObjectPropertiesFrame)
|
||||
ui(new Ui::EventPropertiesFrame)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#ifndef OBJECTPROPERTIESFRAME_H
|
||||
#define OBJECTPROPERTIESFRAME_H
|
||||
#ifndef EVENTPROPERTIESFRAME_H
|
||||
#define EVENTPROPERTIESFRAME_H
|
||||
|
||||
#include <QFrame>
|
||||
|
||||
namespace Ui {
|
||||
class ObjectPropertiesFrame;
|
||||
class EventPropertiesFrame;
|
||||
}
|
||||
|
||||
class EventPropertiesFrame : public QFrame
|
||||
|
@ -16,7 +16,7 @@ public:
|
|||
~EventPropertiesFrame();
|
||||
|
||||
public:
|
||||
Ui::ObjectPropertiesFrame *ui;
|
||||
Ui::EventPropertiesFrame *ui;
|
||||
};
|
||||
|
||||
#endif // OBJECTPROPERTIESFRAME_H
|
||||
#endif // EVENTPROPERTIESFRAME_H
|
||||
|
|
Loading…
Reference in a new issue