vcl/inc/print.h | 1 - vcl/source/gdi/print.cxx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-)
New commits: commit ff4a82b287675b3ee4b6e85b2bfe7ad4e422cc1b Author: Mike Kaganski <[email protected]> AuthorDate: Tue Feb 10 12:04:17 2026 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Tue Feb 10 17:09:48 2026 +0100 Drop the unneeded forward declaration Change-Id: I7654aa16d8a93e2b540e4218ba104b61b82cbf06 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199062 Reviewed-by: Mike Kaganski <[email protected]> Tested-by: Jenkins diff --git a/vcl/inc/print.h b/vcl/inc/print.h index cc8fa8fff0fc..67da24262214 100644 --- a/vcl/inc/print.h +++ b/vcl/inc/print.h @@ -62,6 +62,5 @@ void Add( std::unique_ptr<SalPrinterQueueInfo> pData ); }; void ImplDeletePrnQueueList(); -void ImplUpdateJobSetupPaper( JobSetup& rJobSetup ); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/source/gdi/print.cxx b/vcl/source/gdi/print.cxx index 526cdf2dc5d2..a5c6f9f64328 100644 --- a/vcl/source/gdi/print.cxx +++ b/vcl/source/gdi/print.cxx @@ -74,7 +74,6 @@ namespace static PaperInfo aInfo(PAPER_USER); return aInfo; } -} void ImplUpdateJobSetupPaper( JobSetup& rJobSetup ) { @@ -98,6 +97,7 @@ void ImplUpdateJobSetupPaper( JobSetup& rJobSetup ) rJobSetup.ImplGetData().SetPaperFormat(ePaper); } } +} void Printer::ImplPrintTransparent( const Bitmap& rBmp, const Point& rDestPt, const Size& rDestSize,
