Fixed "QGDict::hashKeyString: Invalid null key" warning

svn path=/branches/proko2/kdepim/; revision=324903
wilder-work
David Faure 22 years ago
parent 9d612885d7
commit 0d64b7fba0
  1. 9
      kmailicalifaceimpl.cpp

@ -817,9 +817,12 @@ KMFolder* KMailICalIfaceImpl::folderFromType( const QString& type,
const QString& folder )
{
if( mUseResourceIMAP ) {
KMFolder* f = extraFolder( type, folder );
if ( f )
return f;
KMFolder* f = 0;
if ( !folder.isEmpty() ) {
f = extraFolder( type, folder );
if ( f )
return f;
}
if( type == "Calendar" ) f = mCalendar;
else if( type == "Contact" ) f = mContacts;

Loading…
Cancel
Save