File indexing completed on 2024-04-14 05:35:51

0001 // clang-format off
0002 /*
0003  * KDiff3 - Text Diff And Merge Tool
0004  *
0005  * SPDX-FileCopyrightText: 2002-2011 Joachim Eibl, joachim.eibl at gmx.de
0006  * SPDX-FileCopyrightText: 2018-2020 Michael Reeves reeves.87@gmail.com
0007  * SPDX-License-Identifier: GPL-2.0-or-later
0008  */
0009 // clang-format on
0010 
0011 #include "ProgressProxyExtender.h"
0012 
0013 #include <QString>
0014 
0015 void ProgressProxyExtender::slotListDirInfoMessage(KJob*, const QString& msg)
0016 {
0017     setInformation(msg, 0);
0018 }
0019 
0020 void ProgressProxyExtender::slotPercent(KJob*, unsigned long percent)
0021 {
0022     setCurrent(percent);
0023 }
0024 
0025