X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/f31a541925033c2ef5e27b85c099d47791b50121..de4ffa3322c8d919ebdb0cdb51115bace8aa8d11:/src/progressindicator.cpp diff --git a/src/progressindicator.cpp b/src/progressindicator.cpp index b42bc2ea5..6805788eb 100644 --- a/src/progressindicator.cpp +++ b/src/progressindicator.cpp @@ -15,12 +15,13 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ #include "progressindicator.h" #include "dolphinmainwindow.h" #include "dolphinstatusbar.h" +#include ProgressIndicator::ProgressIndicator(DolphinMainWindow* mainWindow, const QString& progressText, @@ -74,7 +75,7 @@ void ProgressIndicator::execOperation() DolphinStatusBar* statusBar = m_mainWindow->activeView()->statusBar(); statusBar->setProgress((m_operationsIndex * 100) / m_operationsCount); #warning "EVIL, DANGER, FIRE" - kapp->processEvents(); + qApp->processEvents(); statusBar->repaint(); } }