SVN commit 707059 by aloisio: connection problem with slotCreateMedia fixed M +1 -1 blogposting.cpp M +2 -2 metaweblog.cpp M +4 -2 metaweblog.h --- trunk/KDE/kdepimlibs/kblog/blogposting.cpp #707058:707059 @@ -103,7 +103,7 @@ journal->setUid( id ); journal->setSummary( d_ptr->mTitle ); journal->setCategories( d_ptr->mCategories ); - journal->setDescription( d_ptr->mContent, true ); + //journal->setDescription( d_ptr->mContent, true ); journal->setDtStart( d_ptr->mCreationDateTime ); journal->setCustomProperty( "KBLOG", "URL", url ); journal->setCustomProperty( "KBLOG", "USER", blog.username() ); --- trunk/KDE/kdepimlibs/kblog/metaweblog.cpp #707058:707059 @@ -169,7 +169,7 @@ d->mXmlRpcClient->call( "metaWeblog.newMediaObject", args, this, SLOT( slotCreateMedia( const QList&, const QVariant& ) ), - this, SLOT ( slotError( int, const QString&, const QVariant& ) ), QVariant( i ) ); + this, SLOT( slotError( int, const QString&, const QVariant& ) ), QVariant( i ) ); } @@ -360,7 +360,7 @@ KBlog::BlogPosting* posting = mCallMap[ id.toInt() ]; mCallMap.remove( id.toInt() ); - kDebug(5323) << "MetaWeblog::slotModifyPosting"; + kDebug(5323) << "MetaWeblogPrivate::slotModifyPosting"; //array of structs containing ISO.8601 // dateCreated, String userid, String postid, String content; // TODO: Time zone for the dateCreated! --- trunk/KDE/kdepimlibs/kblog/metaweblog.h #707058:707059 @@ -165,8 +165,10 @@ private: Q_DECLARE_PRIVATE(MetaWeblog) - Q_PRIVATE_SLOT(d_func(), void slotListCategories( - const QList&, const QVariant& )) + Q_PRIVATE_SLOT(d_func(), + void slotListCategories( const QList&, const QVariant& ) ) + Q_PRIVATE_SLOT(d_func(), + void slotCreateMedia( const QList&, const QVariant& )) }; } //namespace KBlog