Skip to content

Commit af5f4c1

Browse files
committed
Minor updates
1 parent 8872c4c commit af5f4c1

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

src/core/map_part.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013 Thomas Schöps
3-
* Copyright 2012-2021 Kai Pastor
3+
* Copyright 2012-2020, 2025 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*

src/core/map_part.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013 Thomas Schöps
3-
* Copyright 2012-2021 Kai Pastor
3+
* Copyright 2012-2020, 2025 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*
@@ -25,8 +25,8 @@
2525
#include <cstddef>
2626
#include <functional>
2727
#include <memory>
28-
#include <vector>
2928
#include <utility>
29+
#include <vector>
3030

3131
#include <QHash>
3232
#include <QRectF>
@@ -162,12 +162,12 @@ class MapPart
162162
void addObject(Object* object, int pos);
163163

164164
/**
165-
* Deleted the object from the given index.
165+
* Deletes the object from the given index.
166166
*/
167167
void deleteObject(int pos);
168168

169169
/**
170-
* Deleted the object from the given index.
170+
* Deletes the object from the given index.
171171
*
172172
* Returns if the object was found in this part.
173173
*/
@@ -310,4 +310,4 @@ const Object* MapPart::getObject(int i) const
310310

311311
} // namespace OpenOrienteering
312312

313-
#endif
313+
#endif // OPENORIENTEERING_MAP_PART_H

src/core/objects/object.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013 Thomas Schöps
3-
* Copyright 2012-2021 Kai Pastor
3+
* Copyright 2012-2021, 2025 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*

src/core/objects/object.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013 Thomas Schöps
3-
* Copyright 2013-2021 Kai Pastor
3+
* Copyright 2013-2020, 2025 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*
@@ -23,8 +23,8 @@
2323
#define OPENORIENTEERING_OBJECT_H
2424

2525
#include <limits>
26-
#include <vector>
2726
#include <utility>
27+
#include <vector>
2828

2929
#include <QtGlobal>
3030
#include <QRectF>
@@ -1311,4 +1311,4 @@ constexpr ObjectPathCoord::operator bool() const
13111311
} // namespace OpenOrienteering
13121312

13131313

1314-
#endif
1314+
#endif // OPENORIENTEERING_OBJECT_H

src/gui/map/map_editor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013 Thomas Schöps
3-
* Copyright 2012-2021, 2024 Kai Pastor
3+
* Copyright 2012-2021, 2024, 2025 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*
@@ -38,8 +38,8 @@
3838
#include <QAction>
3939
#include <QActionGroup>
4040
#include <QApplication>
41-
#include <QBuffer>
4241
#include <QByteArray>
42+
#include <QBuffer>
4343
#include <QComboBox>
4444
#include <QDate>
4545
#include <QDialog>

src/gui/map/map_editor.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright 2012, 2013, 2014 Thomas Schöps
3-
* Copyright 2013-2024 Kai Pastor
3+
* Copyright 2013-2025 Kai Pastor
44
*
55
* This file is part of OpenOrienteering.
66
*
@@ -282,7 +282,7 @@ public slots:
282282

283283
/** Undoes the last object edit step. */
284284
void undo();
285-
/** Redoes the last object edit step */
285+
/** Redoes the last object edit step. */
286286
void redo();
287287
/** Cuts the selected object(s). */
288288
void cut();
@@ -386,8 +386,8 @@ public slots:
386386
void updatePasteAvailability();
387387

388388
/**
389-
* Checks the presence of spot colors,
390-
* and to disables overprinting simulation if there are no spot colors.
389+
* Checks the presence of spot colors
390+
* and disables overprinting simulation if there are no spot colors.
391391
*/
392392
void spotColorPresenceChanged(bool has_spot_colors);
393393

@@ -436,7 +436,7 @@ public slots:
436436
void selectByCurrentSymbols();
437437

438438
/**
439-
* Reverses the selected object(s) direcction(s),
439+
* Reverses the selected object(s) direction(s),
440440
* thus switching dash directions for lines.
441441
*/
442442
void switchDashesClicked();
@@ -875,4 +875,4 @@ Symbol* MapEditorController::activeSymbol() const
875875

876876
} // namespace OpenOrienteering
877877

878-
#endif
878+
#endif // OPENORIENTEERING_MAP_EDITOR_H

0 commit comments

Comments
 (0)