summaryrefslogtreecommitdiffstats
path: root/src/interfaceframework/qifpagingmodel_p.h
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2023-12-20 13:49:03 +0100
committerDominik Holland <dominik.holland@qt.io>2024-01-29 15:41:33 +0100
commit154cbc4344f102fb58d1ffa294f40de8e38932c2 (patch)
tree368c4f7a6cc35e98ad9fcaade7d2c3ad5a3ebc71 /src/interfaceframework/qifpagingmodel_p.h
parent4d0f10e8a05efb151e04c01dd1de981b4135df49 (diff)
Fix problems found by the static code analyzer
Pick-to: 6.7 6.6 6.5 Change-Id: I46cace14654cfb679457d427df029752d95d2dcc Reviewed-by: Robert Griebl <robert.griebl@qt.io>
Diffstat (limited to 'src/interfaceframework/qifpagingmodel_p.h')
-rw-r--r--src/interfaceframework/qifpagingmodel_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaceframework/qifpagingmodel_p.h b/src/interfaceframework/qifpagingmodel_p.h
index 322916d2..b35539ca 100644
--- a/src/interfaceframework/qifpagingmodel_p.h
+++ b/src/interfaceframework/qifpagingmodel_p.h
@@ -37,10 +37,10 @@ public:
void initialize() override;
void onInitializationDone();
- void onCapabilitiesChanged(const QUuid &identifier, QtInterfaceFrameworkModule::ModelCapabilities capabilities);
- void onDataFetched(const QUuid &identifier, const QList<QVariant> &items, int start, bool moreAvailable);
- void onCountChanged(const QUuid &identifier, int new_length);
- void onDataChanged(const QUuid &identifier, const QList<QVariant> &data, int start, int count);
+ void onCapabilitiesChanged(QUuid identifier, QtInterfaceFrameworkModule::ModelCapabilities capabilities);
+ void onDataFetched(QUuid identifier, const QList<QVariant> &items, int start, bool moreAvailable);
+ void onCountChanged(QUuid identifier, int new_length);
+ void onDataChanged(QUuid identifier, const QList<QVariant> &data, int start, int count);
void onFetchMoreThresholdReached();
virtual void resetModel();
virtual void clearToDefaults();