diff options
author | Jonathan Callen <abcd@gentoo.org> | 2009-11-16 05:04:28 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2009-11-16 05:04:28 +0000 |
commit | 05d98426ecbabad7b2be1b015d10893feb1a88e3 (patch) | |
tree | fa45252786afa7a5bed2c3307ab707f2a70a2ae6 /net-im | |
parent | Drop old versions and unused file (diff) | |
download | gentoo-2-05d98426ecbabad7b2be1b015d10893feb1a88e3.tar.gz gentoo-2-05d98426ecbabad7b2be1b015d10893feb1a88e3.tar.bz2 gentoo-2-05d98426ecbabad7b2be1b015d10893feb1a88e3.zip |
Drop unused file
(Portage version: -svn/cvs/Linux i686)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/qtwitter/ChangeLog | 6 | ||||
-rw-r--r-- | net-im/qtwitter/files/qtwitter-0.9.0-no-oauth-fix.patch | 37 |
2 files changed, 5 insertions, 38 deletions
diff --git a/net-im/qtwitter/ChangeLog b/net-im/qtwitter/ChangeLog index d72b938ecba9..23f56fa29f7d 100644 --- a/net-im/qtwitter/ChangeLog +++ b/net-im/qtwitter/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/qtwitter # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/ChangeLog,v 1.19 2009/11/02 21:26:28 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/qtwitter/ChangeLog,v 1.20 2009/11/16 05:04:28 abcd Exp $ + + 16 Nov 2009; Jonathan Callen <abcd@gentoo.org> + -files/qtwitter-0.9.0-no-oauth-fix.patch: + Drop unused file 02 Nov 2009; Markus Meier <maekke@gentoo.org> qtwitter-0.9.2.ebuild: amd64/x86 stable, bug #291430 diff --git a/net-im/qtwitter/files/qtwitter-0.9.0-no-oauth-fix.patch b/net-im/qtwitter/files/qtwitter-0.9.0-no-oauth-fix.patch deleted file mode 100644 index 41758f914532..000000000000 --- a/net-im/qtwitter/files/qtwitter-0.9.0-no-oauth-fix.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff --git a/qtwitter-app/src/statuslist.cpp b/qtwitter-app/src/statuslist.cpp -index 4b3fec5..c5b5673 100644 ---- a/qtwitter-app/src/statuslist.cpp -+++ b/qtwitter-app/src/statuslist.cpp -@@ -25,7 +25,9 @@ - #include <QPixmap> - - #include <account.h> --#include <oauthwizard.h> -+#ifdef OAUTH -+# include <oauthwizard.h> -+#endif - #include "imagedownload.h" - #include "core.h" - #include "dmdialog.h" -diff --git a/twitterapi/twitterapi.cpp b/twitterapi/twitterapi.cpp -index d4e69cc..eed4496 100644 ---- a/twitterapi/twitterapi.cpp -+++ b/twitterapi/twitterapi.cpp -@@ -284,7 +284,7 @@ TwitterAPI::TwitterAPI( const QString &serviceUrl, const QString &login, - } - #else - TwitterAPI::TwitterAPI( const QString &serviceUrl, const QString &login, -- const QString &password, QObject *parent = 0 ) : -+ const QString &password, QObject *parent ) : - QObject( parent ), - d_ptr( new TwitterAPIPrivate ) - { -@@ -444,7 +444,7 @@ void TwitterAPI::postUpdate( const QString &data, quint64 inReplyTo ) - #else - QByteArray auth = d->login.toUtf8() + ":" + d->password.toUtf8(); - request.setRawHeader( "Authorization", "Basic " + auth.toBase64() ); -- content = prepareRequest( data, inReplyTo ); -+ content = d->prepareRequest( data, inReplyTo ); - #endif - - request.setUrl( QUrl(url) ); |