[Libreoffice-commits] core.git: svtools/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Feb 6 20:56:23 UTC 2019


 svtools/source/dialogs/prnsetup.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0160fd3fb4525f73bd51e1c4e1f00db56f652bf8
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Wed Feb 6 17:38:55 2019 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Feb 6 21:56:00 2019 +0100

    QueueInfo::GetJobs returns sal_uInt32
    
    ...ever since at least a02e8af56ba44e9bb3ba2c6e995a23745ee629a0 "INTEGRATION:
    CWS hedaburemove01"
    
    Change-Id: Ie363f02ed5b8ceaca4bd45f2bc1621e351a19ac9
    Reviewed-on: https://gerrit.libreoffice.org/67467
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/svtools/source/dialogs/prnsetup.cxx b/svtools/source/dialogs/prnsetup.cxx
index f6ce79dd2f3c..aed17b36ff4e 100644
--- a/svtools/source/dialogs/prnsetup.cxx
+++ b/svtools/source/dialogs/prnsetup.cxx
@@ -198,7 +198,7 @@ OUString ImplPrnDlgGetStatusText( const QueueInfo& rInfo )
         aStr = ImplPrnDlgAddResString( aStr, STR_SVT_PRNDLG_POWER_SAVE );
 
     // Number of jobs
-    sal_uLong nJobs = rInfo.GetJobs();
+    sal_uInt32 nJobs = rInfo.GetJobs();
     if ( nJobs && (nJobs != QUEUE_JOBS_DONTKNOW) )
     {
         OUString aJobStr( SvtResId( STR_SVT_PRNDLG_JOBCOUNT ) );


More information about the Libreoffice-commits mailing list