Fix warnings about DumpView::dataChanged and struct StatsTuple
This commit is contained in:
parent
f5f04e6cb9
commit
1d8bb9f4df
@ -157,7 +157,8 @@ QRegion DumpView::visualRegionForSelection(
|
|||||||
|
|
||||||
//protected slots:
|
//protected slots:
|
||||||
void DumpView::dataChanged(const QModelIndex &/*topLeft*/,
|
void DumpView::dataChanged(const QModelIndex &/*topLeft*/,
|
||||||
const QModelIndex &/*bottomRight*/)
|
const QModelIndex &/*bottomRight*/,
|
||||||
|
const QVector<int> &/*roles*/)
|
||||||
{
|
{
|
||||||
// FIXME(HI)
|
// FIXME(HI)
|
||||||
update();
|
update();
|
||||||
|
@ -39,7 +39,8 @@ protected:
|
|||||||
QRegion visualRegionForSelection( const QItemSelection &selection ) const;
|
QRegion visualRegionForSelection( const QItemSelection &selection ) const;
|
||||||
protected slots:
|
protected slots:
|
||||||
void dataChanged( const QModelIndex &topLeft,
|
void dataChanged( const QModelIndex &topLeft,
|
||||||
const QModelIndex &bottomRight );
|
const QModelIndex &bottomRight,
|
||||||
|
const QVector<int> &roles );
|
||||||
void selectionChanged( const QItemSelection &selected,
|
void selectionChanged( const QItemSelection &selected,
|
||||||
const QItemSelection &deselected );
|
const QItemSelection &deselected );
|
||||||
void paintEvent(QPaintEvent *event);
|
void paintEvent(QPaintEvent *event);
|
||||||
|
@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
|||||||
|
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
|
|
||||||
class StatsTuple;
|
struct StatsTuple;
|
||||||
|
|
||||||
class PcapTxStats : public QThread
|
class PcapTxStats : public QThread
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user