SVN_SILENT made messages (.desktop file)
[kdepim.git] / mailimporter / filterinfogui.cpp
blobeb2343a60927a4ae769eed78fa71bd064218177a
1 /*
2 Copyright (c) 2012 Montel Laurent <montel@kde.org>
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License, version 2, as
6 published by the Free Software Foundation.
8 This program is distributed in the hope that it will be useful, but
9 WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License along
14 with this program; if not, write to the Free Software Foundation, Inc.,
15 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 #include "filterinfogui.h"
19 #include <KMessageBox>
20 #include <KApplication>
22 using namespace MailImporter;
24 FilterInfoGui::FilterInfoGui()
28 FilterInfoGui::~FilterInfoGui()
31 void FilterInfoGui::setStatusMessage( const QString &status )
33 Q_UNUSED( status );
36 void FilterInfoGui::setFrom( const QString &from )
38 Q_UNUSED( from );
41 void FilterInfoGui::setTo( const QString &to )
43 Q_UNUSED( to );
46 void FilterInfoGui::setCurrent( const QString &current )
48 Q_UNUSED( current );
51 void FilterInfoGui::setCurrent( int percent )
53 Q_UNUSED( percent );
56 void FilterInfoGui::setOverall( int percent )
58 Q_UNUSED( percent );
61 void FilterInfoGui::addErrorLogEntry( const QString &log )
63 Q_UNUSED( log );
66 void FilterInfoGui::addInfoLogEntry( const QString &log )
68 Q_UNUSED( log );
71 void FilterInfoGui::clear()
75 void FilterInfoGui::alert( const QString &message )
77 Q_UNUSED( message );
80 QWidget *FilterInfoGui::parent()
82 return 0;