Skip to content

Commit

Permalink
fix(server): remove unneeded return instruction
Browse files Browse the repository at this point in the history
Marked by clang-tidy.
  • Loading branch information
romangg committed Aug 14, 2024
1 parent fe7a48e commit e3c2acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/xdg_shell_popup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ xdg_shell_positioner const& XdgShellPopup::get_positioner() const

void XdgShellPopup::popupDone()
{
return d_ptr->popupDone();
d_ptr->popupDone();
}

uint32_t XdgShellPopup::configure(QRect const& rect)
Expand Down

0 comments on commit e3c2acc

Please sign in to comment.