mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-23 20:47:45 +00:00
sagasu: Reformat code, misc cleanup
This commit is contained in:
parent
9d6f06bf1f
commit
0916bc970b
5 changed files with 6 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
class FilePropertiesWindow : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit FilePropertiesWindow(QString path, physis_Buffer buffer, QWidget *parent = nullptr);
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
class FileTreeWindow : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit FileTreeWindow(QString gamePath, GameData *data, QWidget *parent = nullptr);
|
||||
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
class HashDatabase : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
HashDatabase(QObject *parent = nullptr);
|
||||
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
|
||||
FilePropertiesWindow::FilePropertiesWindow(QString path, physis_Buffer buffer, QWidget *parent)
|
||||
: QWidget(parent)
|
||||
, data(data)
|
||||
{
|
||||
setWindowTitle(QStringLiteral("Properties for ") + path);
|
||||
|
||||
|
|
|
@ -92,3 +92,5 @@ QString HashDatabase::getFilename(const uint32_t i)
|
|||
|
||||
return query.value(0).toString();
|
||||
}
|
||||
|
||||
#include "moc_hashdatabase.cpp"
|
Loading…
Add table
Reference in a new issue