1
Fork 0
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:
Joshua Goins 2023-10-12 23:45:49 -04:00
parent 9d6f06bf1f
commit 0916bc970b
5 changed files with 6 additions and 1 deletions

View file

@ -9,6 +9,7 @@
class FilePropertiesWindow : public QWidget
{
Q_OBJECT
public:
explicit FilePropertiesWindow(QString path, physis_Buffer buffer, QWidget *parent = nullptr);

View file

@ -12,6 +12,7 @@
class FileTreeWindow : public QWidget
{
Q_OBJECT
public:
explicit FileTreeWindow(QString gamePath, GameData *data, QWidget *parent = nullptr);

View file

@ -9,6 +9,8 @@
class HashDatabase : public QObject
{
Q_OBJECT
public:
HashDatabase(QObject *parent = nullptr);

View file

@ -11,7 +11,6 @@
FilePropertiesWindow::FilePropertiesWindow(QString path, physis_Buffer buffer, QWidget *parent)
: QWidget(parent)
, data(data)
{
setWindowTitle(QStringLiteral("Properties for ") + path);

View file

@ -92,3 +92,5 @@ QString HashDatabase::getFilename(const uint32_t i)
return query.value(0).toString();
}
#include "moc_hashdatabase.cpp"