mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 22:15:57 +03:00
Add essential table view data source method to ShareTableViewDataSource
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
d53680e583
commit
765f33b45c
1 changed files with 6 additions and 0 deletions
|
@ -59,4 +59,10 @@ class ShareTableViewDataSource: NSObject, NSTableViewDataSource {
|
||||||
}
|
}
|
||||||
return proxy
|
return proxy
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MARK: - NSTableViewDataSource protocol methods
|
||||||
|
|
||||||
|
@objc func numberOfRows(in tableView: NSTableView) -> Int {
|
||||||
|
shares.count
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue