mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-22 09:15:18 +00:00
Fix user list not displaying
This commit is contained in:
parent
f34f3484f3
commit
62d9b9a73c
|
@ -249,6 +249,8 @@ extern template void setRequestLimit(Loader::GetItemsByUserIdParams ¶ms, int
|
||||||
extern template bool setRequestStartIndex(Loader::GetItemsByUserIdParams ¶ms, int offset);
|
extern template bool setRequestStartIndex(Loader::GetItemsByUserIdParams ¶ms, int offset);
|
||||||
extern template void setRequestLimit(Loader::GetResumeItemsParams ¶ms, int limit);
|
extern template void setRequestLimit(Loader::GetResumeItemsParams ¶ms, int limit);
|
||||||
extern template bool setRequestStartIndex(Loader::GetResumeItemsParams ¶ms, int offset);
|
extern template bool setRequestStartIndex(Loader::GetResumeItemsParams ¶ms, int offset);
|
||||||
|
extern template void setRequestLimit(Loader::GetPublicUsersParams ¶ms, int limit);
|
||||||
|
extern template bool setRequestStartIndex(Loader::GetPublicUsersParams ¶ms, int offset);
|
||||||
|
|
||||||
extern template QList<DTO::UserDto> extractRecords(const QList<DTO::UserDto> &result);
|
extern template QList<DTO::UserDto> extractRecords(const QList<DTO::UserDto> &result);
|
||||||
extern template int extractTotalRecordCount(const QList<DTO::UserDto> &result);
|
extern template int extractTotalRecordCount(const QList<DTO::UserDto> &result);
|
||||||
|
|
|
@ -165,6 +165,14 @@ bool setRequestStartIndex(Loader::GetResumeItemsParams ¶ms, int index) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
void setRequestLimit(Loader::GetPublicUsersParams &/*params*/, int /*limit*/) {
|
||||||
|
// NOOP
|
||||||
|
}
|
||||||
|
template<>
|
||||||
|
bool setRequestStartIndex(Loader::GetPublicUsersParams &/*params*/, int /*offset*/) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
QList<DTO::UserDto> extractRecords(const QList<DTO::UserDto> &result) {
|
QList<DTO::UserDto> extractRecords(const QList<DTO::UserDto> &result) {
|
||||||
|
|
Loading…
Reference in a new issue