UI: Rename "workertypes.h" to "worker_types.h"

This commit is contained in:
Nodir Temirkhodjaev 2024-05-09 19:23:57 +03:00
parent 1f1013e892
commit ed758b7612
5 changed files with 8 additions and 8 deletions

View File

@ -446,10 +446,10 @@ HEADERS += \
util/window/widgetwindow.h \
util/window/widgetwindowstatewatcher.h \
util/window/windowstatewatcher.h \
util/worker/worker_types.h \
util/worker/workerjob.h \
util/worker/workermanager.h \
util/worker/workerobject.h \
util/worker/workertypes.h
util/worker/workerobject.h
# Icons, README.*
RESOURCES += \

View File

@ -1,5 +1,5 @@
#ifndef WORKERTYPES_H
#define WORKERTYPES_H
#ifndef WORKER_TYPES_H
#define WORKER_TYPES_H
#include <QSharedPointer>
@ -9,4 +9,4 @@ class WorkerManager;
using WorkerJobPtr = QSharedPointer<WorkerJob>;
#endif // WORKERTYPES_H
#endif // WORKER_TYPES_H

View File

@ -5,7 +5,7 @@
#include <util/classhelpers.h>
#include "workertypes.h"
#include "worker_types.h"
class WorkerJob
{

View File

@ -10,7 +10,7 @@
#include <util/classhelpers.h>
#include "workertypes.h"
#include "worker_types.h"
class WorkerManager : public QObject
{

View File

@ -5,7 +5,7 @@
#include <QRunnable>
#include <QThread>
#include "workertypes.h"
#include "worker_types.h"
class WorkerObject : public QRunnable
{