akonadi
util.cpp
00001 /* 00002 Copyright (c) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com 00003 Copyright (c) 2010 Andras Mantia <andras@kdab.com> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 */ 00019 00020 00021 #include "util_p.h" 00022 #include "../dbusconnectionpool.h" 00023 #include "imapsettings.h" 00024 00025 #include <assert.h> 00026 #include <kio/jobclasses.h> 00027 #include <KDebug> 00028 #include <KIO/JobUiDelegate> 00029 00030 namespace Util 00031 { 00033 void showJobError( KJob* job ) 00034 { 00035 assert(job); 00036 // we can be called from the KJob::kill, where we are no longer a KIO::Job 00037 // so better safe than sorry 00038 KIO::Job* kiojob = dynamic_cast<KIO::Job*>(job); 00039 if( kiojob && kiojob->ui() ) 00040 kiojob->ui()->showErrorMessage(); 00041 else 00042 kWarning() << "There is no GUI delegate set for a kjob, and it failed with error:" << job->errorString(); 00043 } 00044 00045 OrgKdeAkonadiImapSettingsInterface *createImapSettingsInterface( const QString &ident ) 00046 { 00047 //NOTE(Andras): from kmail/util.cpp 00048 return new OrgKdeAkonadiImapSettingsInterface( QString::fromLatin1("org.freedesktop.Akonadi.Resource.") + ident, 00049 QString::fromLatin1("/Settings"), 00050 Akonadi::DBusConnectionPool::threadConnection() ); 00051 } 00052 00053 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon May 14 2012 04:53:04 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon May 14 2012 04:53:04 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.