rsslisting example (coding style): fix horizontal spacing
Remove space after *, insert space after comma. Pick-to: 6.5 Task-number: QTBUG-111228 Change-Id: I7525715dede20b45241efaf3f9540c896b1455c7 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io> Reviewed-by: Konrad Kujawa <konrad.kujawa@qt.io>
This commit is contained in:
parent
d52cc4725f
commit
f8ad9cd23c
@ -66,7 +66,7 @@ RSSListing::RSSListing(QWidget *parent)
|
||||
layout->addWidget(treeWidget);
|
||||
|
||||
setWindowTitle(tr("RSS listing example"));
|
||||
resize(640,480);
|
||||
resize(640, 480);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -193,7 +193,7 @@ void RSSListing::parseXml()
|
||||
/*
|
||||
Open the link in the browser
|
||||
*/
|
||||
void RSSListing::itemActivated(QTreeWidgetItem * item)
|
||||
void RSSListing::itemActivated(QTreeWidgetItem *item)
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl(item->text(1)));
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ public slots:
|
||||
void finished(QNetworkReply *reply);
|
||||
void readyRead();
|
||||
void metaDataChanged();
|
||||
void itemActivated(QTreeWidgetItem * item);
|
||||
void itemActivated(QTreeWidgetItem *item);
|
||||
void error(QNetworkReply::NetworkError);
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user