Skip to content

Commit

Permalink
Fix gui_window example compilation
Browse files Browse the repository at this point in the history
I remember making this fix but it got lost somewhere between my plethora
of git branches and stashes. Like tears in rain.

Change-Id: Id04629167263230a11a4496d788d4791d4f6c3b9
Reviewed-on: https://codereview.kdab.com/c/kdab/kdutils/+/135915
Tested-by: Continuous Integration <[email protected]>
Reviewed-by: Mike Krus <[email protected]>
  • Loading branch information
MiKom committed Jan 3, 2024
1 parent beaf7ab commit 452f44d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/gui_window/gui_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ExampleWindow : public KDGui::Window
{
spdlog::info("{}() buttons = {} at pos = ({}, {})",
__FUNCTION__,
ev->buttons(),
ev->buttons().toInt(),
ev->xPos(),
ev->yPos());
}
Expand All @@ -27,7 +27,7 @@ class ExampleWindow : public KDGui::Window
{
spdlog::info("{}() buttons = {} at pos = ({}, {})",
__FUNCTION__,
ev->buttons(),
ev->buttons().toInt(),
ev->xPos(),
ev->yPos());
}
Expand All @@ -36,7 +36,7 @@ class ExampleWindow : public KDGui::Window
{
spdlog::info("{}() buttons = {} at pos = ({}, {})",
__FUNCTION__,
ev->buttons(),
ev->buttons().toInt(),
ev->xPos(),
ev->yPos());
}
Expand Down

0 comments on commit 452f44d

Please sign in to comment.