mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-01 20:00:13 +02:00
At what point did I forget to actually check compilation before
committing? blech
This commit is contained in:
@@ -184,7 +184,7 @@ void
|
|||||||
TwitterPlugin::friendsTimelineStatuses( const QList< QTweetStatus > &statuses )
|
TwitterPlugin::friendsTimelineStatuses( const QList< QTweetStatus > &statuses )
|
||||||
{
|
{
|
||||||
qDebug() << Q_FUNC_INFO;
|
qDebug() << Q_FUNC_INFO;
|
||||||
QRegExp regex( QString( "^(@[a-zA-Z0-9]+ )?Got Tomahawk\\?(.*)$", Qt::CaseSensitive, QRegExp::RegExp2 ) );
|
QRegExp regex( QString( "^(@[a-zA-Z0-9]+ )?Got Tomahawk\\?(.*)$" ), Qt::CaseSensitive, QRegExp::RegExp2 );
|
||||||
QString myScreenName = TomahawkSettings::instance()->twitterScreenName();
|
QString myScreenName = TomahawkSettings::instance()->twitterScreenName();
|
||||||
|
|
||||||
QHash< QString, QTweetStatus > latestHash;
|
QHash< QString, QTweetStatus > latestHash;
|
||||||
@@ -234,7 +234,7 @@ void
|
|||||||
TwitterPlugin::mentionsStatuses( const QList< QTweetStatus > &statuses )
|
TwitterPlugin::mentionsStatuses( const QList< QTweetStatus > &statuses )
|
||||||
{
|
{
|
||||||
qDebug() << Q_FUNC_INFO;
|
qDebug() << Q_FUNC_INFO;
|
||||||
QRegExp regex( QString( "^(@[a-zA-Z0-9]+ )?Got Tomahawk\\?(.*)$", Qt::CaseSensitive, QRegExp::RegExp2 ) );
|
QRegExp regex( QString( "^(@[a-zA-Z0-9]+ )?Got Tomahawk\\?(.*)$" ), Qt::CaseSensitive, QRegExp::RegExp2 );
|
||||||
QString myScreenName = TomahawkSettings::instance()->twitterScreenName();
|
QString myScreenName = TomahawkSettings::instance()->twitterScreenName();
|
||||||
|
|
||||||
QHash< QString, QTweetStatus > latestHash;
|
QHash< QString, QTweetStatus > latestHash;
|
||||||
|
Reference in New Issue
Block a user