Skip to content

Commit d6b5852

Browse files
committed
core!: fix typo in ShellScreen.primaryOrientation
1 parent d195ca7 commit d6b5852

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/core/qmlscreen.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class QuickshellScreenInfo: public QObject {
4040
/// The ratio between physical pixels and device-independent (scaled) pixels.
4141
Q_PROPERTY(qreal devicePixelRatio READ devicePixelRatio NOTIFY physicalPixelDensityChanged);
4242
Q_PROPERTY(Qt::ScreenOrientation orientation READ orientation NOTIFY orientationChanged);
43-
Q_PROPERTY(Qt::ScreenOrientation primatyOrientation READ primaryOrientation NOTIFY primaryOrientationChanged);
43+
Q_PROPERTY(Qt::ScreenOrientation primaryOrientation READ primaryOrientation NOTIFY primaryOrientationChanged);
4444
// clang-format on
4545

4646
public:

src/wayland/screencopy/image_copy_capture/image_copy_capture_p.hpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,19 @@ class IccScreencopyContext
2323
void captureFrame() override;
2424

2525
protected:
26-
// clang-formt off
26+
// clang-format off
2727
void ext_image_copy_capture_session_v1_buffer_size(uint32_t width, uint32_t height) override;
2828
void ext_image_copy_capture_session_v1_shm_format(uint32_t format) override;
2929
void ext_image_copy_capture_session_v1_dmabuf_device(wl_array* device) override;
30-
void
31-
ext_image_copy_capture_session_v1_dmabuf_format(uint32_t format, wl_array* modifiers) override;
30+
void ext_image_copy_capture_session_v1_dmabuf_format(uint32_t format, wl_array* modifiers) override;
3231
void ext_image_copy_capture_session_v1_done() override;
3332
void ext_image_copy_capture_session_v1_stopped() override;
3433

3534
void ext_image_copy_capture_frame_v1_transform(uint32_t transform) override;
36-
void ext_image_copy_capture_frame_v1_damage(int32_t x, int32_t y, int32_t width, int32_t height)
37-
override;
35+
void ext_image_copy_capture_frame_v1_damage(int32_t x, int32_t y, int32_t width, int32_t height) override;
3836
void ext_image_copy_capture_frame_v1_ready() override;
3937
void ext_image_copy_capture_frame_v1_failed(uint32_t reason) override;
40-
// clang-formt on
38+
// clang-format on
4139

4240
private:
4341
void clearOldState();

0 commit comments

Comments
 (0)