Skip to content

Commit

Permalink
Fixed Header Include Guards
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Sep 20, 2024
1 parent 4e34570 commit 4586ee8
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 28 deletions.
6 changes: 3 additions & 3 deletions core/MultiselectCompleter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef MULTISELECTCOMPLETER_H
#define MULTISELECTCOMPLETER_H
#ifndef QLOG_CORE_MULTISELECTCOMPLETER_H
#define QLOG_CORE_MULTISELECTCOMPLETER_H

#include <QCompleter>

Expand All @@ -17,4 +17,4 @@ class MultiselectCompleter : public QCompleter
QStringList splitPath( const QString& path ) const;
};

#endif // MULTISELECTCOMPLETER_H
#endif // QLOG_CORE_MULTISELECTCOMPLETER_H
4 changes: 2 additions & 2 deletions core/UpdatableSQLRecord.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef UPDATABLESQLRECORD_H
#define UPDATABLESQLRECORD_H
#ifndef QLOG_CORE_UPDATABLESQLRECORD_H
#define QLOG_CORE_UPDATABLESQLRECORD_H

#include <QObject>
#include <QSqlRecord>
Expand Down
6 changes: 3 additions & 3 deletions models/SearchFilterProxyModel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef SEARCHFILTERPROXYMODEL_H
#define SEARCHFILTERPROXYMODEL_H
#ifndef QLOG_MODELS_SEARCHFILTERPROXYMODEL_H
#define QLOG_MODELS_SEARCHFILTERPROXYMODEL_H

#include <QSortFilterProxyModel>

Expand All @@ -18,4 +18,4 @@ class SearchFilterProxyModel : public QSortFilterProxyModel
QString searchString;
};

#endif // SEARCHFILTERPROXYMODEL_H
#endif // QLOG_MODELS_SEARCHFILTERPROXYMODEL_H
6 changes: 3 additions & 3 deletions models/ShortcutEditorModel.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef SHORTCUTEDITORMODEL_H
#define SHORTCUTEDITORMODEL_H
#ifndef QLOG_MODELS_SHORTCUTEDITORMODEL_H
#define QLOG_MODELS_SHORTCUTEDITORMODEL_H

#include <QAbstractTableModel>
#include <QAction>
Expand Down Expand Up @@ -36,4 +36,4 @@ class ShortcutEditorModel : public QAbstractTableModel
const QString&) const;
};

#endif // SHORTCUTEDITORMODEL_H
#endif // QLOG_MODELS_SHORTCUTEDITORMODEL_H
6 changes: 3 additions & 3 deletions rotator/RotCaps.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef ROTATOR_ROTCAPS_H
#define ROTATOR_ROTCAPS_H
#ifndef QLOG_ROTATOR_ROTCAPS_H
#define QLOG_ROTATOR_ROTCAPS_H


class RotCaps
Expand All @@ -14,4 +14,4 @@ class RotCaps
int serialStopBits;
};

#endif // ROTATOR_ROTCAPS_H
#endif // QLOG_ROTATOR_ROTCAPS_H
6 changes: 3 additions & 3 deletions rotator/drivers/HamlibRotDrv.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef ROTATOR_DRIVERS_HAMLIBROTDRV_H
#define ROTATOR_DRIVERS_HAMLIBROTDRV_H
#ifndef QLOG_ROTATOR_DRIVERS_HAMLIBROTDRV_H
#define QLOG_ROTATOR_DRIVERS_HAMLIBROTDRV_H

#include <QTimer>
#include <hamlib/rotator.h>
Expand Down Expand Up @@ -43,4 +43,4 @@ private slots:
bool forceSendState;
};

#endif // ROTATOR_DRIVERS_HAMLIBROTDRV_H
#endif // QLOG_ROTATOR_DRIVERS_HAMLIBROTDRV_H
6 changes: 3 additions & 3 deletions rotator/drivers/PSTRotDrv.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef ROTATOR_DRIVERS_PSTROTDRV_H
#define ROTATOR_DRIVERS_PSTROTDRV_H
#ifndef QLOG_ROTATOR_DRIVERS_PSTROTDRV_H
#define QLOG_ROTATOR_DRIVERS_PSTROTDRV_H

#include <QUdpSocket>
#include <QTimer>
Expand Down Expand Up @@ -41,4 +41,4 @@ private slots:
QHostAddress rotatorAddress;
};

#endif // ROTATOR_DRIVERS_PSTROTDRV_H
#endif // QLOG_ROTATOR_DRIVERS_PSTROTDRV_H
6 changes: 3 additions & 3 deletions ui/FreqQSpinBox.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef FREQQSPINBOX_H
#define FREQQSPINBOX_H
#ifndef QLOG_UI_FREQQSPINBOX_H
#define QLOG_UI_FREQQSPINBOX_H

#include <QSpinBox>
#include <data/Band.h>
Expand All @@ -23,4 +23,4 @@ public slots:
QList<Band> enabledBands;
};

#endif // FREQQSPINBOX_H
#endif // QLOG_UI_FREQQSPINBOX_H
6 changes: 3 additions & 3 deletions ui/ProfileImageWidget.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef PROFILEIMAGEWIDGET_H
#define PROFILEIMAGEWIDGET_H
#ifndef QLOG_UI_PROFILEIMAGEWIDGET_H
#define QLOG_UI_PROFILEIMAGEWIDGET_H

#include <QWidget>
#include <QLabel>
Expand Down Expand Up @@ -56,4 +56,4 @@ private slots:
QMimeType mimeType;
};

#endif // PROFILEIMAGEWIDGET_H
#endif // QLOG_UI_PROFILEIMAGEWIDGET_H
4 changes: 2 additions & 2 deletions ui/QSODetailDialog.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef QSODETAILDIALOG_H
#define QSODETAILDIALOG_H
#ifndef QLOG_UI_QSODETAILDIALOG_H
#define QLOG_UI_QSODETAILDIALOG_H

#include <QDialog>
#include <QDataWidgetMapper>
Expand Down

0 comments on commit 4586ee8

Please sign in to comment.