vcl/qt5/QtInstanceWidget.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 4dd27e5bc249cba69d1f4e98b1c4b7e5b0e8c86e Author: Michael Stahl <[email protected]> AuthorDate: Fri Feb 20 15:25:17 2026 +0100 Commit: Michael Stahl <[email protected]> CommitDate: Fri Feb 20 17:03:36 2026 +0100 vcl: fix qt5 build Change-Id: I8da7db5d3e57fcb22d3225a8ba8921220410f7ff Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199873 Reviewed-by: Stephan Bergmann <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> diff --git a/vcl/qt5/QtInstanceWidget.cxx b/vcl/qt5/QtInstanceWidget.cxx index 47eb148a51ab..15000c816974 100644 --- a/vcl/qt5/QtInstanceWidget.cxx +++ b/vcl/qt5/QtInstanceWidget.cxx @@ -471,9 +471,9 @@ bool QtInstanceWidget::get_direction() const return false; } -const OUString& QtInstanceWidget::get_cargo_text() {} +const OUString& QtInstanceWidget::get_cargo_text() { return EMPTY_OUSTRING; } -void QtInstanceWidget::set_cargo_text(const OUString& /*rCargo*/) { return EMPTY_OUSTRING; } +void QtInstanceWidget::set_cargo_text(const OUString& /*rCargo*/) {} void QtInstanceWidget::set_direction(bool) { assert(false && "Not implemented yet"); }
